client: fix - exit on bad display-effect argument

This commit is contained in:
Yonit Halperin 2010-08-08 13:16:38 +03:00
parent eb5de022d4
commit a5194d37e9

View File

@ -1926,6 +1926,8 @@ bool Application::set_disabled_display_effects(CmdLineParser& parser, char *val,
disp_setting._disable_animation = true;
} else {
Platform::term_printf("%s: bad display effect type \"%s\"\n", arg0, val);
_exit_code = SPICEC_ERROR_CODE_INVALID_ARG;
return false;
}
} while ((val = parser.next_argument()));