aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Draffen <nick.draffen@gmail.com>2017-02-14 22:20:51 +0100
committerDaniel Stenberg <daniel@haxx.se>2017-02-14 22:50:15 +0100
commit690935390c29cb97c8240463f49e22b7f3db77fb (patch)
tree4f022ae19e5e6fc81f768d3d5e400606d485d2fc /src
parent97c7591a57535d349b140a67efae5bb6a7bc537c (diff)
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
Diffstat (limited to 'src')
-rw-r--r--src/tool_getparam.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tool_getparam.c b/src/tool_getparam.c
index 2777a0a2e..686b01d7e 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");
}