added missing newlines to two infof() functions about document dates

This commit is contained in:
Daniel Stenberg 2001-01-10 22:46:26 +00:00
parent 44254c4945
commit f5aa7f64bd
1 changed files with 2 additions and 2 deletions

View File

@ -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;