libbb: nuke BB_GETOPT_ERROR, always die if there are mutually exclusive options
[oweals/busybox.git] / networking / udhcp / dhcpc.c
index 6909e8489d4339ad5ea57a205dbd151907881beb..3165c2d68130e2cb95a3c5b9e5b5645878740d2b 100644 (file)
@@ -210,7 +210,7 @@ int udhcpc_main(int argc, char **argv)
        client_config.timeout = 3;
 
        /* Parse command line */
-       opt_complementary = "?:c--C:C--c" // mutually exclusive
+       opt_complementary = "c--C:C--c" // mutually exclusive
                            ":hH:Hh"; // -h and -H are the same
 #if ENABLE_GETOPT_LONG
        applet_long_options = arg_options;