From f98f219c35a3734ee3fb9876d0438417e4948c16 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 18 Jan 2021 22:57:56 +0100 Subject: gopher: remove accidental conn->data leftover --- lib/gopher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gopher.c b/lib/gopher.c index 085426815..e5c7d2752 100644 --- a/lib/gopher.c +++ b/lib/gopher.c @@ -192,7 +192,7 @@ static CURLcode gopher_do(struct Curl_easy *data, bool *done) else break; - timeout_ms = Curl_timeleft(conn->data, NULL, FALSE); + timeout_ms = Curl_timeleft(data, NULL, FALSE); if(timeout_ms < 0) { result = CURLE_OPERATION_TIMEDOUT; break; -- cgit v1.2.1