aboutsummaryrefslogtreecommitdiff
path: root/lib/http.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-11-13 11:29:32 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-11-13 11:29:32 +0000
commitbfb118e42ae0785de1106938d3566039e801b925 (patch)
treee5f0112070b5b8ab54f58d8e9a10e963de554257 /lib/http.c
parent3f0aa0648f438b205174c39cedad834e33fade4f (diff)
Added space after the Cookie: header keyword
Diffstat (limited to 'lib/http.c')
-rw-r--r--lib/http.c2
1 files changed, 1 insertions, 1 deletions
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);