From: Daniel Stenberg Date: Mon, 13 Nov 2000 11:29:32 +0000 (+0000) Subject: Added space after the Cookie: header keyword X-Git-Tag: curl-7_5~147 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bfb118e42ae0785de1106938d3566039e801b925;p=curl Added space after the Cookie: header keyword --- diff --git a/lib/http.c b/lib/http.c index 1e6bd24b2..70870f7b2 100644 --- a/lib/http.c +++ b/lib/http.c @@ -394,7 +394,7 @@ CURLcode http(struct connectdata *conn) while(co) { if(co->value && strlen(co->value)) { if(0 == count) { - add_bufferf(req_buffer, "Cookie:"); + add_bufferf(req_buffer, "Cookie: "); } add_bufferf(req_buffer, "%s%s=%s", count?"; ":"", co->name, co->value);