mirror of
https://github.com/curl/curl.git
synced 2026-07-22 23:37:17 +03:00
Added space after the Cookie: header keyword
This commit is contained in:
parent
3f0aa0648f
commit
bfb118e42a
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue