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:
@@ -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;
|
||||
|
Reference in New Issue
Block a user