From: Marty Kuhrt Date: Sun, 1 Jun 2008 16:01:37 +0000 (+0000) Subject: return CURLE_OK instead of CURLE_FAILED_INIT if PARAM_HEKP_REQUESTED returned by... X-Git-Tag: curl-7_18_2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=01e1c85304280426b8d69b0b98549a7512358211;p=thirdparty%2Fcurl.git return CURLE_OK instead of CURLE_FAILED_INIT if PARAM_HEKP_REQUESTED returned by getparameter --- diff --git a/src/main.c b/src/main.c index 0a00efc93f..b5c4067ae3 100644 --- a/src/main.c +++ b/src/main.c @@ -3915,11 +3915,14 @@ operate(struct Configurable *config, int argc, argv_item_t argv[]) res = getparameter(flag, nextarg, &passarg, config); if(res) { - const char *reason = param2text(res); - if(res != PARAM_HELP_REQUESTED) + int retval = CURLE_OK; + if(res != PARAM_HELP_REQUESTED) { + const char *reason = param2text(res); helpf(config->errors, "option %s: %s\n", origopt, reason); + retval = CURLE_FAILED_INIT; + } clean_getout(config); - return CURLE_FAILED_INIT; + return retval; } if(passarg) /* we're supposed to skip this */