aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/highlevel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/highlevel.c b/lib/highlevel.c
index 6a89e3bff..ef05123c1 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;