aboutsummaryrefslogtreecommitdiff
path: root/src/standalone.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/standalone.cpp')
-rw-r--r--src/standalone.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/standalone.cpp b/src/standalone.cpp
index c8af5d6..3c4968c 100644
--- a/src/standalone.cpp
+++ b/src/standalone.cpp
@@ -293,7 +293,13 @@ int main(int argc, char **ppArgv)
// Start the server's ascync processing
//
// This starts the server on a thread and begins the initialization process
- if (!ggkStart(dataGetter, dataSetter, kMaxAsyncInitTimeoutMS))
+ //
+ // !!!IMPORTANT!!!
+ //
+ // This first parameter (the service name) must match tha name configured in the D-Bus permissions. See the Readme.md file
+ // for more information.
+ //
+ if (!ggkStart("gobbledegook", "Gobbledegook", "Gobbledegook", dataGetter, dataSetter, kMaxAsyncInitTimeoutMS))
{
return -1;
}