projects
/
platform
/
upstream
/
curl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
44254c4
)
added missing newlines to two infof() functions about document dates
author
Daniel Stenberg
<daniel@haxx.se>
Wed, 10 Jan 2001 22:46:26 +0000
(22:46 +0000)
committer
Daniel Stenberg
<daniel@haxx.se>
Wed, 10 Jan 2001 22:46:26 +0000
(22:46 +0000)
lib/highlevel.c
patch
|
blob
|
history
diff --git
a/lib/highlevel.c
b/lib/highlevel.c
index
6a89e3b
..
ef05123
100644
(file)
--- 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;