1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

transfer: the recent sessionhandle change broke CURL_DOES_CONVERSIONS

This commit is contained in:
Gisle Vanem 2013-08-20 11:42:34 +02:00 committed by Daniel Stenberg
parent e4a1888bd0
commit 062e5bfd9c

View File

@ -101,11 +101,13 @@ CURLcode Curl_fillreadbuffer(struct connectdata *conn, int bytes, int *nreadp)
#ifdef CURL_DOES_CONVERSIONS #ifdef CURL_DOES_CONVERSIONS
bool sending_http_headers = FALSE; bool sending_http_headers = FALSE;
if((conn->handler->protocol&(CURLPROTO_HTTP|CURLPROTO_RTSP)) && if(conn->handler->protocol&(CURLPROTO_HTTP|CURLPROTO_RTSP)) {
(data->state.proto.http->sending == HTTPSEND_REQUEST)) { const struct HTTP *http = data->req.protop;
/* We're sending the HTTP request headers, not the data.
Remember that so we don't re-translate them into garbage. */ if(http->sending == HTTPSEND_REQUEST)
sending_http_headers = TRUE; /* We're sending the HTTP request headers, not the data.
Remember that so we don't re-translate them into garbage. */
sending_http_headers = TRUE;
} }
#endif #endif