From: Daniel Stenberg Date: Wed, 10 Jan 2001 22:46:26 +0000 (+0000) Subject: added missing newlines to two infof() functions about document dates X-Git-Tag: curl_7_6-pre3~20 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f5aa7f64bdc7ba316aa95be4a5fffa97c387b2bf;p=thirdparty%2Fcurl.git added missing newlines to two infof() functions about document dates --- diff --git a/lib/highlevel.c b/lib/highlevel.c index 6a89e3bffe..ef05123c18 100644 --- a/lib/highlevel.c +++ b/lib/highlevel.c @@ -456,14 +456,14 @@ _Transfer(struct connectdata *c_conn) default: if(timeofdoc < data->timevalue) { infof(data, - "The requested document is not new enough"); + "The requested document is not new enough\n"); return CURLE_OK; } break; case TIMECOND_IFUNMODSINCE: if(timeofdoc > data->timevalue) { infof(data, - "The requested document is not old enough"); + "The requested document is not old enough\n"); return CURLE_OK; } break;