]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
Bertrand Demiddelaer fixed two missing newlines
authorDaniel Stenberg <daniel@haxx.se>
Mon, 26 Jul 2004 15:42:07 +0000 (15:42 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 26 Jul 2004 15:42:07 +0000 (15:42 +0000)
lib/cookie.c

index 8d8d100f0189af2bc811b9e5f796d2a96455df1c..da7ca1ba7d841ea86917ed29ecc0c1169e7f9769 100644 (file)
@@ -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);
               }
             }