From 25e34fa5d275c6e9d82cf5799900c2aceedc98dd Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Wed, 6 Feb 2013 09:45:44 +0100 Subject: [PATCH] Made command-line arguments more Unix-compliant. --- icinga-app/icinga.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icinga-app/icinga.cpp b/icinga-app/icinga.cpp index 41c938031..d22ec6ead 100644 --- a/icinga-app/icinga.cpp +++ b/icinga-app/icinga.cpp @@ -161,13 +161,13 @@ int main(int argc, char **argv) po::options_description desc("Supported options"); desc.add_options() - ("help,h", "show this help message") + ("help", "show this help message") ("version,V", "show version information") ("library,l", po::value >(), "load a library") ("include,I", po::value >(), "add include search directory") ("config,c", po::value >(), "parse a configuration file") ("validate,v", "exit after validating the configuration") - ("debug", "enable debugging") + ("debug,x", "enable debugging") ("daemonize,d", "daemonize after reading the configuration files") ; -- 2.40.0