diff --git a/lib/http.c b/lib/http.c index bf89d97b0631471f0a22a44fd5640ddcab5634c4..7bbf13b7a3d131e0d651f7cf89e8ae82bd853c01 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 */ }