diff options
Diffstat (limited to 'libbb/parse_config.c')
-rw-r--r-- | libbb/parse_config.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libbb/parse_config.c b/libbb/parse_config.c index eaf69d9..8701b01 100644 --- a/libbb/parse_config.c +++ b/libbb/parse_config.c @@ -42,8 +42,9 @@ int parse_main(int argc UNUSED_PARAM, char **argv) int mintokens = 0, ntokens = 128; unsigned noout; - opt_complementary = "-1"; - noout = 1 & getopt32(argv, "xn:+m:+d:f:+", &ntokens, &mintokens, &delims, &flags); + noout = 1 & getopt32(argv, "^" "xn:+m:+d:f:+" "\0" "-1", + &ntokens, &mintokens, &delims, &flags + ); //argc -= optind; argv += optind; |