mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
append a CRLF pair after the content-type line
This commit is contained in:
parent
a9c4963cc0
commit
85dbf82d93
@ -853,6 +853,9 @@ CURLcode Curl_http(struct connectdata *conn)
|
|||||||
return CURLE_HTTP_POST_ERROR;
|
return CURLE_HTTP_POST_ERROR;
|
||||||
}
|
}
|
||||||
add_buffer(req_buffer, contentType, linelength);
|
add_buffer(req_buffer, contentType, linelength);
|
||||||
|
|
||||||
|
/* make the request end in a true CRLF */
|
||||||
|
add_buffer(req_buffer, "\r\n", 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* set upload size to the progress meter */
|
/* set upload size to the progress meter */
|
||||||
|
Loading…
Reference in New Issue
Block a user