From: Daniel Stenberg Date: Mon, 26 Jul 2004 15:42:07 +0000 (+0000) Subject: Bertrand Demiddelaer fixed two missing newlines X-Git-Tag: curl-7_12_1~42 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0e03165467416b2637341ada829a9e16a003daa4;p=thirdparty%2Fcurl.git Bertrand Demiddelaer fixed two missing newlines --- diff --git a/lib/cookie.c b/lib/cookie.c index 8d8d100f01..da7ca1ba7d 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); } }