From 9f60fe87355e2b390b836b50f61c7cf961fbf1c9 Mon Sep 17 00:00:00 2001 From: Marcus Eggenberger Date: Wed, 11 Mar 2009 19:18:25 +0100 Subject: [PATCH] fixes a bug where the data/config-dir option was not availble in the client --- src/common/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/main.cpp b/src/common/main.cpp index 6aadb3a0..980d4f39 100644 --- a/src/common/main.cpp +++ b/src/common/main.cpp @@ -84,6 +84,8 @@ int main(int argc, char **argv) { // put shared client&core arguments here cliParser->addSwitch("debug",'d', "Enable debug output"); cliParser->addSwitch("help",'h', "Display this help and exit"); + cliParser->addOption("configdir ", 'c', "Specify the directory holding configuration files, the SQlite database and the SSL Cert"); + cliParser->addOption("datadir ", 0, "DEPRECATED - Use --configdir instead"); #ifndef BUILD_CORE // put client-only arguments here @@ -97,8 +99,6 @@ int main(int argc, char **argv) { cliParser->addSwitch("norestore", 'n', "Don't restore last core's state"); cliParser->addOption("logfile ", 'l', "Path to logfile"); cliParser->addOption("loglevel ", 'L', "Loglevel Debug|Info|Warning|Error", "Info"); - cliParser->addOption("configdir ", 'c', "Specify the directory holding configuration files, the SQlite database and the SSL Cert"); - cliParser->addOption("datadir ", 0, "DEPRECATED - Use --configdir instead"); #endif #ifdef HAVE_KDE -- 2.20.1