From: Daniel Stenberg Date: Mon, 29 Jul 2002 22:23:55 +0000 (+0000) Subject: fixed the Curl_cookie_add() invoke to not assume a space after the colon X-Git-Tag: curl-7_10~150 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7313501e30a58bcda30df802ec86c010685ee715;p=curl fixed the Curl_cookie_add() invoke to not assume a space after the colon --- diff --git a/lib/transfer.c b/lib/transfer.c index d36c90fce..f266a4a3b 100644 --- a/lib/transfer.c +++ b/lib/transfer.c @@ -589,7 +589,7 @@ CURLcode Curl_readwrite(struct connectdata *conn, } else if(data->cookies && strnequal("Set-Cookie:", k->p, 11)) { - Curl_cookie_add(data->cookies, TRUE, k->p+12, conn->name); + Curl_cookie_add(data->cookies, TRUE, k->p+11, conn->name); } else if(strnequal("Last-Modified:", k->p, strlen("Last-Modified:")) &&