Added space after the Cookie: header keyword

This commit is contained in:
Daniel Stenberg 2000-11-13 11:29:32 +00:00
Родитель 3f0aa0648f
Коммит bfb118e42a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

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