aboutsummaryrefslogtreecommitdiff
path: root/libbb/getopt32.c
diff options
context:
space:
mode:
authorKaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>2017-04-12 00:58:46 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2017-04-12 20:11:34 +0200
commit835ad3a984c5590ae4f6c94f2f0781ea049d1ae8 (patch)
treecb86c5441c258f66358faa93ef899e09a7788de8 /libbb/getopt32.c
parentc5496d3585bcab3c39f9b10f638ba0c94f5cda3f (diff)
downloadbusybox-w32-835ad3a984c5590ae4f6c94f2f0781ea049d1ae8.tar.gz
busybox-w32-835ad3a984c5590ae4f6c94f2f0781ea049d1ae8.tar.bz2
busybox-w32-835ad3a984c5590ae4f6c94f2f0781ea049d1ae8.zip
libbb: GETOPT_RESET macro
Signed-off-by: Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb/getopt32.c')
-rw-r--r--libbb/getopt32.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/libbb/getopt32.c b/libbb/getopt32.c
index 497fc016f..3104826ef 100644
--- a/libbb/getopt32.c
+++ b/libbb/getopt32.c
@@ -576,13 +576,7 @@ getopt32(char **argv, const char *applet_opts, ...)
576 * run_nofork_applet() does this, but we might end up here 576 * run_nofork_applet() does this, but we might end up here
577 * also via gunzip_main() -> gzip_main(). Play safe. 577 * also via gunzip_main() -> gzip_main(). Play safe.
578 */ 578 */
579#ifdef __GLIBC__ 579 GETOPT_RESET();
580 optind = 0;
581#else /* BSD style */
582 optind = 1;
583 /* optreset = 1; */
584#endif
585 /* optarg = NULL; opterr = 0; optopt = 0; - do we need this?? */
586 580
587 /* Note: just "getopt() <= 0" will not work well for 581 /* Note: just "getopt() <= 0" will not work well for
588 * "fake" short options, like this one: 582 * "fake" short options, like this one: