From: Nick Draffen Date: Tue, 14 Feb 2017 21:20:51 +0000 (+0100) Subject: curl: fix typo in time condition warning message X-Git-Tag: curl-7_53_0~22 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=690935390c29cb97c8240463f49e22b7f3db77fb;p=thirdparty%2Fcurl.git curl: fix typo in time condition warning message The warning message had a typo. The argument long form is --time-cond not --timecond Closes #1263 --- diff --git a/src/tool_getparam.c b/src/tool_getparam.c index 2777a0a2ea..686b01d7e2 100644 --- a/src/tool_getparam.c +++ b/src/tool_getparam.c @@ -1987,7 +1987,7 @@ ParameterError getparameter(char *flag, /* f or -long-flag */ /* failed, remove time condition */ config->timecond = CURL_TIMECOND_NONE; warnf(global, - "Illegal date format for -z, --timecond (and not " + "Illegal date format for -z, --time-cond (and not " "a file name). Disabling time condition. " "See curl_getdate(3) for valid date syntax.\n"); }