aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-07-26 15:42:07 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-07-26 15:42:07 +0000
commit0e03165467416b2637341ada829a9e16a003daa4 (patch)
tree591d92ccb3dcd788d60f88d72fb856187b0eb073 /lib
parent6574f4106e44e95bb72bfad0d6bd7c42065fd9ef (diff)
Bertrand Demiddelaer fixed two missing newlines
Diffstat (limited to 'lib')
-rw-r--r--lib/cookie.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/cookie.c b/lib/cookie.c
index 8d8d100f0..da7ca1ba7 100644
--- a/lib/cookie.c
+++ b/lib/cookie.c
@@ -261,7 +261,7 @@ Curl_cookie_add(struct SessionHandle *data,
/* Received and skipped a cookie with a domain using too few
dots. */
badcookie=TRUE; /* mark this as a bad cookie */
- infof(data, "skipped cookie with illegal dotcount domain: %s",
+ infof(data, "skipped cookie with illegal dotcount domain: %s\n",
whatptr);
}
else {
@@ -289,7 +289,7 @@ Curl_cookie_add(struct SessionHandle *data,
is not a domain to which the current host belongs. Mark as
bad. */
badcookie=TRUE;
- infof(data, "skipped cookie with bad tailmatch domain: %s",
+ infof(data, "skipped cookie with bad tailmatch domain: %s\n",
whatptr);
}
}