tool_parsecfg: Reworked error handling from commit fc59a9e1

This commit is contained in:
Steve Holme 2014-03-22 16:50:47 +00:00
parent 5e097583f7
commit ed02f0abca
1 changed files with 2 additions and 1 deletions

View 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>";