Revert "Skip invalid commandline args instead of aborting"

This reverts commit 4ad94124a6.
This commit is contained in:
Chris Young 2015-11-27 12:32:13 +00:00
parent d7907bfe4c
commit b962d3db82

View File

@ -734,10 +734,8 @@ nsoption_commandline(int *pargc, char **argv, struct nsoption_s *opts)
/* check we have an option */ /* check we have an option */
/* option must start -- and be as long as the shortest option*/ /* option must start -- and be as long as the shortest option*/
if ((arglen < (2+5) ) || (arg[0] != '-') || (arg[1] != '-')) { if ((arglen < (2+5) ) || (arg[0] != '-') || (arg[1] != '-'))
idx++; break;
continue;
}
arg += 2; /* skip -- */ arg += 2; /* skip -- */