From 892f43a4de47f5079c293689e975b1f791384cfa Mon Sep 17 00:00:00 2001 From: john30 Date: Sun, 15 Nov 2015 10:36:00 +0100 Subject: [PATCH] added revision info, aligned help description --- src/ebusd/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ebusd/main.cpp b/src/ebusd/main.cpp index 9d18d917..f26f1156 100644 --- a/src/ebusd/main.cpp +++ b/src/ebusd/main.cpp @@ -97,14 +97,14 @@ static MessageMap* s_messageMap = NULL; static MainLoop* s_mainLoop = NULL; /** the version string of the program. */ -const char *argp_program_version = ""PACKAGE_STRING""; +const char *argp_program_version = ""PACKAGE_STRING "." REVISION""; /** the report bugs to address of the program. */ const char *argp_program_bug_address = ""PACKAGE_BUGREPORT""; /** the documentation of the program. */ static const char argpdoc[] = - "A daemon for access to eBUS devices."; + "A daemon for communication with eBUS heating systems."; #define O_CHKCFG 1 #define O_DMPCFG (O_CHKCFG+1) @@ -868,7 +868,7 @@ int main(int argc, char* argv[]) signal(SIGINT, signalHandler); signal(SIGTERM, signalHandler); - logNotice(lf_main, PACKAGE_STRING " started"); + logNotice(lf_main, PACKAGE_STRING "." REVISION " started"); // load configuration files loadConfigFiles(s_messageMap);