vtls: reduce conn->data use

Closes #6474
This commit is contained in:
Patrick Monnerat 2021-01-13 17:01:31 +01:00 committed by Daniel Stenberg
parent 8399d89360
commit bbe3aa9f88
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
24 changed files with 597 additions and 564 deletions

View file

@ -1532,7 +1532,7 @@ static CURLcode https_connecting(struct Curl_easy *data, bool *done)
#endif
/* perform SSL initialization for this socket */
result = Curl_ssl_connect_nonblocking(conn, FIRSTSOCKET, done);
result = Curl_ssl_connect_nonblocking(data, conn, FIRSTSOCKET, done);
if(result)
connclose(conn, "Failed HTTPS connection");