From: Daniel Stenberg Date: Mon, 18 Jan 2021 21:57:56 +0000 (+0100) Subject: gopher: remove accidental conn->data leftover X-Git-Tag: curl-7_75_0~81 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f98f219c35a3734ee3fb9876d0438417e4948c16;p=thirdparty%2Fcurl.git gopher: remove accidental conn->data leftover --- diff --git a/lib/gopher.c b/lib/gopher.c index 0854268154..e5c7d2752a 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;