Loading src/tool_getparam.c +4 −3 Original line number Diff line number Diff line Loading @@ -373,6 +373,7 @@ ParameterError getparameter(char *flag, /* f or -long-flag */ char *nextarg, /* NULL if unset */ bool *usedarg, /* set to TRUE if the arg has been used */ struct GlobalConfig *global, struct OperationConfig *config) { char letter; Loading Loading @@ -1433,7 +1434,7 @@ ParameterError getparameter(char *flag, /* f or -long-flag */ config->insecure_ok = toggle; break; case 'K': /* parse config file */ if(parseconfig(nextarg, config)) if(parseconfig(nextarg, global)) warnf(config, "error trying read config from the '%s' file\n", nextarg); break; Loading Loading @@ -1847,7 +1848,7 @@ ParameterError parse_args(struct GlobalConfig *config, int argc, else { nextarg = (i < (argc - 1)) ? argv[i + 1] : NULL; result = getparameter(flag, nextarg, &passarg, operation); result = getparameter(flag, nextarg, &passarg, config, operation); if(!result && passarg) i++; /* we're supposed to skip this */ } Loading @@ -1856,7 +1857,7 @@ ParameterError parse_args(struct GlobalConfig *config, int argc, bool used; /* Just add the URL please */ result = getparameter((char *)"--url", argv[i], &used, operation); result = getparameter((char *)"--url", argv[i], &used, config, operation); } } Loading src/tool_getparam.h +3 −4 Original line number Diff line number Diff line Loading @@ -44,10 +44,9 @@ typedef enum { struct GlobalConfig; struct OperationConfig; ParameterError getparameter(char *flag, char *nextarg, bool *usedarg, struct OperationConfig *config); ParameterError getparameter(char *flag, char *nextarg, bool *usedarg, struct GlobalConfig *global, struct OperationConfig *operation); #ifdef UNITTESTS void parse_cert_parameter(const char *cert_parameter, Loading src/tool_operate.c +1 −1 Original line number Diff line number Diff line Loading @@ -1789,7 +1789,7 @@ CURLcode operate(struct GlobalConfig *config, int argc, argv_item_t argv[]) /* Parse .curlrc if necessary */ if((argc == 1) || (!curlx_strequal(argv[1], "-q"))) { parseconfig(NULL, config->first); /* ignore possible failure */ parseconfig(NULL, config); /* ignore possible failure */ /* If we had no arguments then make sure a url was specified in .curlrc */ if((argc < 2) && (!config->first->url_list)) { Loading src/tool_parsecfg.c +6 −5 Original line number Diff line number Diff line Loading @@ -44,7 +44,7 @@ static const char *unslashquote(const char *line, char *param); static char *my_get_line(FILE *fp); /* return 0 on everything-is-fine, and non-zero otherwise */ int parseconfig(const char *filename, struct OperationConfig *config) int parseconfig(const char *filename, struct GlobalConfig *global) { int res; FILE *file; Loading @@ -52,6 +52,7 @@ int parseconfig(const char *filename, struct OperationConfig *config) bool usedarg; char *home; int rc = 0; struct OperationConfig *operation = global->first; if(!filename || !*filename) { /* NULL or no file name attempts to load .curlrc from the homedir! */ Loading Loading @@ -201,8 +202,8 @@ int parseconfig(const char *filename, struct OperationConfig *config) case '#': /* comment */ break; default: warnf(config, "%s:%d: warning: '%s' uses unquoted white space in the" " line that may cause side-effects!\n", warnf(operation, "%s:%d: warning: '%s' uses unquoted white space in" " the line that may cause side-effects!\n", filename, lineno, option); } } Loading @@ -218,7 +219,7 @@ int parseconfig(const char *filename, struct OperationConfig *config) #ifdef DEBUG_CONFIG fprintf(stderr, "PARAM: \"%s\"\n",(param ? param : "(null)")); #endif res = getparameter(option, param, &usedarg, config); res = getparameter(option, param, &usedarg, global, operation); if(param && *param && !usedarg) /* we passed in a parameter that wasn't used! */ Loading @@ -234,7 +235,7 @@ int parseconfig(const char *filename, struct OperationConfig *config) res != PARAM_VERSION_INFO_REQUESTED && res != PARAM_ENGINES_REQUESTED) { const char *reason = param2text(res); warnf(config, "%s:%d: warning: '%s' %s\n", warnf(operation, "%s:%d: warning: '%s' %s\n", filename, lineno, option, reason); } } Loading src/tool_parsecfg.h +1 −1 Original line number Diff line number Diff line Loading @@ -23,7 +23,7 @@ ***************************************************************************/ #include "tool_setup.h" int parseconfig(const char *filename, struct OperationConfig *config); int parseconfig(const char *filename, struct GlobalConfig *config); #endif /* HEADER_CURL_TOOL_PARSECFG_H */ Loading
src/tool_getparam.c +4 −3 Original line number Diff line number Diff line Loading @@ -373,6 +373,7 @@ ParameterError getparameter(char *flag, /* f or -long-flag */ char *nextarg, /* NULL if unset */ bool *usedarg, /* set to TRUE if the arg has been used */ struct GlobalConfig *global, struct OperationConfig *config) { char letter; Loading Loading @@ -1433,7 +1434,7 @@ ParameterError getparameter(char *flag, /* f or -long-flag */ config->insecure_ok = toggle; break; case 'K': /* parse config file */ if(parseconfig(nextarg, config)) if(parseconfig(nextarg, global)) warnf(config, "error trying read config from the '%s' file\n", nextarg); break; Loading Loading @@ -1847,7 +1848,7 @@ ParameterError parse_args(struct GlobalConfig *config, int argc, else { nextarg = (i < (argc - 1)) ? argv[i + 1] : NULL; result = getparameter(flag, nextarg, &passarg, operation); result = getparameter(flag, nextarg, &passarg, config, operation); if(!result && passarg) i++; /* we're supposed to skip this */ } Loading @@ -1856,7 +1857,7 @@ ParameterError parse_args(struct GlobalConfig *config, int argc, bool used; /* Just add the URL please */ result = getparameter((char *)"--url", argv[i], &used, operation); result = getparameter((char *)"--url", argv[i], &used, config, operation); } } Loading
src/tool_getparam.h +3 −4 Original line number Diff line number Diff line Loading @@ -44,10 +44,9 @@ typedef enum { struct GlobalConfig; struct OperationConfig; ParameterError getparameter(char *flag, char *nextarg, bool *usedarg, struct OperationConfig *config); ParameterError getparameter(char *flag, char *nextarg, bool *usedarg, struct GlobalConfig *global, struct OperationConfig *operation); #ifdef UNITTESTS void parse_cert_parameter(const char *cert_parameter, Loading
src/tool_operate.c +1 −1 Original line number Diff line number Diff line Loading @@ -1789,7 +1789,7 @@ CURLcode operate(struct GlobalConfig *config, int argc, argv_item_t argv[]) /* Parse .curlrc if necessary */ if((argc == 1) || (!curlx_strequal(argv[1], "-q"))) { parseconfig(NULL, config->first); /* ignore possible failure */ parseconfig(NULL, config); /* ignore possible failure */ /* If we had no arguments then make sure a url was specified in .curlrc */ if((argc < 2) && (!config->first->url_list)) { Loading
src/tool_parsecfg.c +6 −5 Original line number Diff line number Diff line Loading @@ -44,7 +44,7 @@ static const char *unslashquote(const char *line, char *param); static char *my_get_line(FILE *fp); /* return 0 on everything-is-fine, and non-zero otherwise */ int parseconfig(const char *filename, struct OperationConfig *config) int parseconfig(const char *filename, struct GlobalConfig *global) { int res; FILE *file; Loading @@ -52,6 +52,7 @@ int parseconfig(const char *filename, struct OperationConfig *config) bool usedarg; char *home; int rc = 0; struct OperationConfig *operation = global->first; if(!filename || !*filename) { /* NULL or no file name attempts to load .curlrc from the homedir! */ Loading Loading @@ -201,8 +202,8 @@ int parseconfig(const char *filename, struct OperationConfig *config) case '#': /* comment */ break; default: warnf(config, "%s:%d: warning: '%s' uses unquoted white space in the" " line that may cause side-effects!\n", warnf(operation, "%s:%d: warning: '%s' uses unquoted white space in" " the line that may cause side-effects!\n", filename, lineno, option); } } Loading @@ -218,7 +219,7 @@ int parseconfig(const char *filename, struct OperationConfig *config) #ifdef DEBUG_CONFIG fprintf(stderr, "PARAM: \"%s\"\n",(param ? param : "(null)")); #endif res = getparameter(option, param, &usedarg, config); res = getparameter(option, param, &usedarg, global, operation); if(param && *param && !usedarg) /* we passed in a parameter that wasn't used! */ Loading @@ -234,7 +235,7 @@ int parseconfig(const char *filename, struct OperationConfig *config) res != PARAM_VERSION_INFO_REQUESTED && res != PARAM_ENGINES_REQUESTED) { const char *reason = param2text(res); warnf(config, "%s:%d: warning: '%s' %s\n", warnf(operation, "%s:%d: warning: '%s' %s\n", filename, lineno, option, reason); } } Loading
src/tool_parsecfg.h +1 −1 Original line number Diff line number Diff line Loading @@ -23,7 +23,7 @@ ***************************************************************************/ #include "tool_setup.h" int parseconfig(const char *filename, struct OperationConfig *config); int parseconfig(const char *filename, struct GlobalConfig *config); #endif /* HEADER_CURL_TOOL_PARSECFG_H */