1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-22 16:18:48 -05:00

Bertrand Demiddelaer fixed two missing newlines

This commit is contained in:
Daniel Stenberg 2004-07-26 15:42:07 +00:00
parent 6574f4106e
commit 0e03165467

View File

@ -261,7 +261,7 @@ Curl_cookie_add(struct SessionHandle *data,
/* Received and skipped a cookie with a domain using too few /* Received and skipped a cookie with a domain using too few
dots. */ dots. */
badcookie=TRUE; /* mark this as a bad cookie */ 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); whatptr);
} }
else { else {
@ -289,7 +289,7 @@ Curl_cookie_add(struct SessionHandle *data,
is not a domain to which the current host belongs. Mark as is not a domain to which the current host belongs. Mark as
bad. */ bad. */
badcookie=TRUE; badcookie=TRUE;
infof(data, "skipped cookie with bad tailmatch domain: %s", infof(data, "skipped cookie with bad tailmatch domain: %s\n",
whatptr); whatptr);
} }
} }