diff options
author | Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi> | 2017-04-12 00:58:46 +0300 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-04-12 20:11:34 +0200 |
commit | 835ad3a984c5590ae4f6c94f2f0781ea049d1ae8 (patch) | |
tree | cb86c5441c258f66358faa93ef899e09a7788de8 /shell | |
parent | c5496d3585bcab3c39f9b10f638ba0c94f5cda3f (diff) | |
download | busybox-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 'shell')
-rw-r--r-- | shell/shell_common.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/shell/shell_common.c b/shell/shell_common.c index 549b17ca1..fb86e680f 100644 --- a/shell/shell_common.c +++ b/shell/shell_common.c | |||
@@ -401,13 +401,7 @@ shell_builtin_ulimit(char **argv) | |||
401 | /* In case getopt was already called: | 401 | /* In case getopt was already called: |
402 | * reset the libc getopt() function, which keeps internal state. | 402 | * reset the libc getopt() function, which keeps internal state. |
403 | */ | 403 | */ |
404 | #ifdef __GLIBC__ | 404 | GETOPT_RESET(); |
405 | optind = 0; | ||
406 | #else /* BSD style */ | ||
407 | optind = 1; | ||
408 | /* optreset = 1; */ | ||
409 | #endif | ||
410 | /* optarg = NULL; opterr = 0; optopt = 0; - do we need this?? */ | ||
411 | 405 | ||
412 | argc = 1; | 406 | argc = 1; |
413 | while (argv[argc]) | 407 | while (argv[argc]) |