refs #408 Fix DBus interface names to contain only legal characters

The DBus specification allows only ASCII characters "[A-Z][a-z][0-9]_".
Dash is illegal and therefore libdbus is complaining about our
interface names not being valid.
This commit is contained in:
Roland Winklmeier
2015-04-21 23:40:27 +02:00
parent f878b77f0b
commit 01d92f5981
8 changed files with 8 additions and 8 deletions

View File

@@ -27,7 +27,7 @@
//! @{
//! DBus interface for context
#define BLACKCORE_CONTEXTNETWORK_INTERFACENAME "org.swift-project.blackcore.contextnetwork"
#define BLACKCORE_CONTEXTNETWORK_INTERFACENAME "org.swift_project.blackcore.contextnetwork"
//! DBus object path for context
#define BLACKCORE_CONTEXTNETWORK_OBJECTPATH "/network"