fixed the option parser to not loop when a long option is specified
authorDaniel Stenberg <daniel@haxx.se>
Fri, 30 Nov 2001 09:26:06 +0000 (09:26 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 30 Nov 2001 09:26:06 +0000 (09:26 +0000)
src/main.c

index c332f6a477f6d76453e6056ce1cd599e2db340c0..589892b343441a6724de22a21ad64f60ca62b63d 100644 (file)
@@ -1464,7 +1464,7 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */
     }
     hit = -1;
 
-  } while(!singleopt && *++parse && !*usedarg);
+  } while(!longopt && !singleopt && *++parse && !*usedarg);
 
   return PARAM_OK;
 }