diff options
author | Rob Landley <rob@landley.net> | 2013-04-06 19:57:54 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2013-04-06 19:57:54 -0500 |
commit | a137c3fdf3af02042edc1c9f53910640c61c3072 (patch) | |
tree | 4d5e04b2bf8666970f3107e0e6f0f0c62381970d /lib | |
parent | a586f201d612e695e49536cb7610e94bbad2c236 (diff) | |
download | toybox-a137c3fdf3af02042edc1c9f53910640c61c3072.tar.gz |
Fix argument parsing so -- doesn't include itself in output.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/args.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -372,7 +372,7 @@ void get_optflags(void) // Handle -- if (!*gof.arg) { gof.stopearly += 2; - goto notflag; + continue; } // Handle --longopt |