From 4ad94124a693528f2ac47a9b4b2e12880586aedf Mon Sep 17 00:00:00 2001 From: Chris Young Date: Tue, 24 Nov 2015 23:55:40 +0000 Subject: Skip invalid commandline args instead of aborting --- utils/nsoption.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'utils') diff --git a/utils/nsoption.c b/utils/nsoption.c index ccdd23ae9..c83f7799a 100644 --- a/utils/nsoption.c +++ b/utils/nsoption.c @@ -734,8 +734,10 @@ 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] != '-')) - break; + if ((arglen < (2+5) ) || (arg[0] != '-') || (arg[1] != '-')) { + idx++; + continue; + } arg += 2; /* skip -- */ -- cgit v1.2.3