From a5194d37e978d0a065a82f931293fceaaf43dc19 Mon Sep 17 00:00:00 2001 From: Yonit Halperin Date: Sun, 8 Aug 2010 13:16:38 +0300 Subject: client: fix - exit on bad display-effect argument --- client/application.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/application.cpp b/client/application.cpp index 3dafbc6c..490cd8ca 100644 --- a/client/application.cpp +++ b/client/application.cpp @@ -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())); -- cgit