Browse Source

set optopt in getopt_long

this is undocumented but possibly expected behavior of GNU
getopt_long, and useful when error message printing has been
suppressed.
Rich Felker 10 years ago
parent
commit
0217ed72f9
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/misc/getopt_long.c

+ 1 - 0
src/misc/getopt_long.c

@@ -76,6 +76,7 @@ static int __getopt_long_core(int argc, char *const *argv, const char *optstring
 		if (cnt==1) {
 			i = match;
 			optind++;
+			optopt = longopts[i].val;
 			if (*opt == '=') {
 				if (!longopts[i].has_arg) {
 					if (optstring[0] == ':' || !opterr)