diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-01-10 22:46:26 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-01-10 22:46:26 +0000 |
commit | f5aa7f64bdc7ba316aa95be4a5fffa97c387b2bf (patch) | |
tree | 41838c0368685fdf92ecbde3ee054d9d9aea5241 | |
parent | 44254c4945d7ec5a3acd7118de52d9b97937a4ad (diff) |
added missing newlines to two infof() functions about document dates
-rw-r--r-- | lib/highlevel.c | 4 |
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; |