Added space after the Cookie: header keyword
authorDaniel Stenberg <daniel@haxx.se>
Mon, 13 Nov 2000 11:29:32 +0000 (11:29 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 13 Nov 2000 11:29:32 +0000 (11:29 +0000)
lib/http.c

index 1e6bd24..70870f7 100644 (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);