From 7313501e30a58bcda30df802ec86c010685ee715 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 29 Jul 2002 22:23:55 +0000 Subject: fixed the Curl_cookie_add() invoke to not assume a space after the colon --- lib/transfer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/transfer.c') 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:")) && -- cgit v1.2.3