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
1 changed files with 2 additions and 4 deletions

View File

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