Added space after the Cookie: header keyword

This commit is contained in:
Daniel Stenberg 2000-11-13 11:29:32 +00:00
parent 3f0aa0648f
commit bfb118e42a

View File

@ -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);