diff options
author | Yang Tse <yangsita@gmail.com> | 2012-06-14 13:32:05 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2012-06-14 13:32:05 +0200 |
commit | 6085ca2aeddb38e4d5f24c47bd98111b236cf384 (patch) | |
tree | 7b4577a279969ef44ed811738ef80723367ca508 /lib/http.c | |
parent | a8259945c4086445022b658f023bc712d1fc9c9d (diff) |
Fix bad failf() and info() usage
Calls to failf() are not supposed to provide trailing newline.
Calls to infof() must provide trailing newline.
Fixed 30 or so strings.
Diffstat (limited to 'lib/http.c')
-rw-r--r-- | lib/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c index 2726165bf..4298b213a 100644 --- a/lib/http.c +++ b/lib/http.c @@ -1601,7 +1601,7 @@ CURLcode Curl_add_timecondition(struct SessionHandle *data, result = Curl_gmtime(data->set.timevalue, &keeptime); if(result) { - failf(data, "Invalid TIMEVALUE\n"); + failf(data, "Invalid TIMEVALUE"); return result; } tm = &keeptime; |