fix bug whereby getopt_long allowed mismatch in last char of option name
authorRich Felker <dalias@aerifal.cx>
Wed, 13 Apr 2011 18:52:23 +0000 (14:52 -0400)
committerRich Felker <dalias@aerifal.cx>
Wed, 13 Apr 2011 18:52:23 +0000 (14:52 -0400)
src/linux/getopt_long.c

index d80cd1b..6d3a4a6 100644 (file)
@@ -14,7 +14,7 @@ static int __getopt_long(int argc, char *const *argv, const char *optstring, con
                        const char *name = longopts[i].name;
                        char *opt = argv[optind]+1;
                        if (*opt == '-') opt++;
-                       while (*name && *name++ == *opt++);
+                       for (; *name && *name == *opt; name++, opt++);
                        if (*name || (*opt && *opt != '=')) continue;
                        if (*opt == '=') {
                                if (!longopts[i].has_arg) continue;