diff --git a/lib/highlevel.c b/lib/highlevel.c index 6a89e3bffe2713c76df9f3f53538da4e0e2ed4e3..ef05123c182cd0be46ca32b841284708c2d3bdd7 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;