diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | posix/getopt.c | 1 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2017-04-07 Zack Weinberg <zackw@panix.com> + * posix/getopt.c (_getopt_internal_r): Don't increment + d->optind a second time when reporting ambiguous -W options. + * posix/getopt_int.h: Include getopt.h. Use impl-namespace names for all arguments to _getopt_internal and _getopt_internal_r. diff --git a/posix/getopt.c b/posix/getopt.c index f1fa0166d8..e616aa6e4d 100644 --- a/posix/getopt.c +++ b/posix/getopt.c @@ -850,7 +850,6 @@ _getopt_internal_r (int argc, char *const *argv, const char *optstring, #endif } d->__nextchar += strlen (d->__nextchar); - d->optind++; return '?'; } if (pfound != NULL) |