From: Dana Jansens Date: Fri, 21 Mar 2003 10:41:56 +0000 (+0000) Subject: choke on invalid options on the cmd line X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=178fdf254d35c7af40ee5f09e7ade9d2fcdc5ec5;p=chaz%2Fopenbox choke on invalid options on the cmd line --- diff --git a/openbox/openbox.c b/openbox/openbox.c index f410f312..a4f527b1 100644 --- a/openbox/openbox.c +++ b/openbox/openbox.c @@ -271,6 +271,10 @@ void parse_args(int argc, char **argv) g_printerr("-rc requires an argument\n"); else ob_rc_path = argv[++i]; + } else { + g_printerr("Invalid option: '%s'\n\n", argv[i]); + print_help(); + exit(1); } } }