From 4907431903345638a997d315b5e3dd4febfb9e26 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 20 Jan 2021 09:13:14 +0100 Subject: [PATCH] =?UTF-8?q?transfer:=20fix=20=E2=80=98conn=E2=80=99=20unde?= =?UTF-8?q?clared=20mistake=20for=20iconv=20build?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Follow-up to 219d9f8620d --- lib/transfer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/transfer.c b/lib/transfer.c index a8aa02c02d..4f869b90de 100644 --- a/lib/transfer.c +++ b/lib/transfer.c @@ -164,6 +164,7 @@ CURLcode Curl_fillreadbuffer(struct Curl_easy *data, size_t bytes, #ifdef CURL_DOES_CONVERSIONS bool sending_http_headers = FALSE; + struct connectdata *conn = data->conn; if(conn->handler->protocol&(PROTO_FAMILY_HTTP|CURLPROTO_RTSP)) { const struct HTTP *http = data->req.p.http;