Fix incorrect type for the --app argument

refs #8791
This commit is contained in:
Gunnar Beutner 2015-03-18 12:30:07 +01:00
parent 50b1e1cf6b
commit cfbda617c8
1 changed files with 1 additions and 1 deletions

View File

@ -186,7 +186,7 @@ int Main(void)
("color", "use VT100 color codes even when stdout is not a terminal")
#endif /* _WIN32 */
("define,D", po::value<std::vector<std::string> >(), "define a constant")
("app,a", po::value<std::vector<std::string> >(), "application library name (default: icinga)")
("app,a", po::value<std::string>(), "application library name (default: icinga)")
("library,l", po::value<std::vector<std::string> >(), "load a library")
("include,I", po::value<std::vector<std::string> >(), "add include search directory")
("log-level,x", po::value<std::string>(), "specify the log level for the console log");