]> granicus.if.org Git - curl/commitdiff
tool_parsecfg: Reworked error handling from commit fc59a9e1
authorSteve Holme <steve_holme@hotmail.com>
Sat, 22 Mar 2014 16:50:47 +0000 (16:50 +0000)
committerSteve Holme <steve_holme@hotmail.com>
Sat, 22 Mar 2014 16:50:47 +0000 (16:50 +0000)
src/tool_parsecfg.c

index 53e2660a6fdc114cd07147dd203ac3588508acde..7a161c3bb8762978dc85999b62d5a4d963983f38 100644 (file)
@@ -250,7 +250,8 @@ int parseconfig(const char *filename, struct GlobalConfig *global)
             res = PARAM_NO_MEM;
         }
       }
-      else if(res != PARAM_OK) {
+
+      if(res != PARAM_OK && res != PARAM_NEXT_OPERATION) {
         /* the help request isn't really an error */
         if(!strcmp(filename, "-")) {
           filename = (char *)"<stdin>";