summaryrefslogtreecommitdiff
path: root/lib/http.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2021-01-24 23:41:58 +0100
committerDaniel Stenberg <daniel@haxx.se>2021-01-26 10:04:47 +0100
commit1dc8aa870e879d3b2ff0334cdb11842d6321d61f (patch)
tree29ccd68e0b9821ba440200513b28c4666c17daa9 /lib/http.c
parent560fc170ec8976019544546762d565bbf786fdc9 (diff)
downloadcurl-1dc8aa870e879d3b2ff0334cdb11842d6321d61f.tar.gz
hostip/proxy: remove conn->data use
Closes #6513
Diffstat (limited to 'lib/http.c')
-rw-r--r--lib/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c
index 40773e6da..6f7f55d07 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -1433,7 +1433,7 @@ CURLcode Curl_http_connect(struct Curl_easy *data, bool *done)
#ifndef CURL_DISABLE_PROXY
/* the CONNECT procedure might not have been completed */
- result = Curl_proxy_connect(conn, FIRSTSOCKET);
+ result = Curl_proxy_connect(data, FIRSTSOCKET);
if(result)
return result;