Loading src/tool_getparam.c +1 −1 Original line number Diff line number Diff line Loading @@ -443,6 +443,7 @@ ParameterError getparameter(const char *flag, /* f or -long-flag */ bool toggle = TRUE; /* how to switch boolean options, on or off. Controlled by using --OPTION or --no-OPTION */ *usedarg = FALSE; /* default is that we don't use the arg */ if(('-' != flag[0]) || (('-' == flag[0]) && ('-' == flag[1]))) { Loading Loading @@ -496,7 +497,6 @@ ParameterError getparameter(const char *flag, /* f or -long-flag */ letter = parse[0]; subletter = parse[1]; } *usedarg = FALSE; /* default is that we don't use the arg */ if(hit < 0) { for(j = 0; j < sizeof(aliases)/sizeof(aliases[0]); j++) { Loading src/tool_parsecfg.c +2 −2 Original line number Diff line number Diff line Loading @@ -49,7 +49,7 @@ int parseconfig(const char *filename, struct GlobalConfig *global) int res; FILE *file; char filebuffer[512]; bool usedarg; bool usedarg = FALSE; char *home; int rc = 0; struct OperationConfig *operation = global->first; Loading Loading @@ -220,7 +220,7 @@ int parseconfig(const char *filename, struct GlobalConfig *global) #endif res = getparameter(option, param, &usedarg, global, operation); if(param && *param && !usedarg) if(!res && param && *param && !usedarg) /* we passed in a parameter that wasn't used! */ res = PARAM_GOT_EXTRA_PARAMETER; Loading Loading
src/tool_getparam.c +1 −1 Original line number Diff line number Diff line Loading @@ -443,6 +443,7 @@ ParameterError getparameter(const char *flag, /* f or -long-flag */ bool toggle = TRUE; /* how to switch boolean options, on or off. Controlled by using --OPTION or --no-OPTION */ *usedarg = FALSE; /* default is that we don't use the arg */ if(('-' != flag[0]) || (('-' == flag[0]) && ('-' == flag[1]))) { Loading Loading @@ -496,7 +497,6 @@ ParameterError getparameter(const char *flag, /* f or -long-flag */ letter = parse[0]; subletter = parse[1]; } *usedarg = FALSE; /* default is that we don't use the arg */ if(hit < 0) { for(j = 0; j < sizeof(aliases)/sizeof(aliases[0]); j++) { Loading
src/tool_parsecfg.c +2 −2 Original line number Diff line number Diff line Loading @@ -49,7 +49,7 @@ int parseconfig(const char *filename, struct GlobalConfig *global) int res; FILE *file; char filebuffer[512]; bool usedarg; bool usedarg = FALSE; char *home; int rc = 0; struct OperationConfig *operation = global->first; Loading Loading @@ -220,7 +220,7 @@ int parseconfig(const char *filename, struct GlobalConfig *global) #endif res = getparameter(option, param, &usedarg, global, operation); if(param && *param && !usedarg) if(!res && param && *param && !usedarg) /* we passed in a parameter that wasn't used! */ res = PARAM_GOT_EXTRA_PARAMETER; Loading