mirror of
https://github.com/curl/curl.git
synced 2026-07-28 04:53:08 +03:00
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.
This commit is contained in:
parent
a8259945c4
commit
6085ca2aed
10 changed files with 33 additions and 32 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue