From 178fdf254d35c7af40ee5f09e7ade9d2fcdc5ec5 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Fri, 21 Mar 2003 10:41:56 +0000 Subject: [PATCH] choke on invalid options on the cmd line --- openbox/openbox.c | 4 ++++ 1 file changed, 4 insertions(+) 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); } } } -- 2.39.2