From: Daniel Stenberg Date: Mon, 13 Mar 2000 09:11:54 +0000 (+0000) Subject: now sends cookies space separated to better work with IIS4.0 servers X-Git-Tag: curl-6_5~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2ad8ed777138834202a7cad9336b60bb50d026cc;p=curl now sends cookies space separated to better work with IIS4.0 servers --- diff --git a/lib/http.c b/lib/http.c index bf89d97b0..7bbf13b7a 100644 --- a/lib/http.c +++ b/lib/http.c @@ -232,11 +232,11 @@ UrgError http(struct UrlData *data, char *ppath, char *host, long *bytecount) if(co->value && strlen(co->value)) { if(0 == count) { sendf(data->firstsocket, data, - "Cookie: "); + "Cookie:"); } count++; sendf(data->firstsocket, data, - "%s=%s;", co->name, co->value); + " %s=%s;", co->name, co->value); } co = co->next; /* next cookie please */ }