CLI: Hide "Command options" if command is null

Before this commit, if icinga2 command executed without any argument,
the program will print empty "Command options".

While at it, clean the whitespaces.

fixes #10439

Signed-off-by: Gunnar Beutner <gunnar@beutner.name>
This commit is contained in:
Mhd Sulhan 2015-10-22 22:49:42 +07:00 committed by Gunnar Beutner
parent 618e031f46
commit 977d94839b
1 changed files with 7 additions and 8 deletions

View File

@ -200,12 +200,11 @@ bool CLICommand::ParseCommand(int argc, char **argv, po::options_description& vi
found_command: found_command:
lock.unlock(); lock.unlock();
po::options_description vdesc("Command options"); if (command) {
po::options_description vdesc("Command options");
if (command)
command->InitParameters(vdesc, hiddenDesc); command->InitParameters(vdesc, hiddenDesc);
visibleDesc.add(vdesc);
visibleDesc.add(vdesc); }
if (autocomplete) if (autocomplete)
return true; return true;