diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-06-18 10:18:39 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-06-19 23:02:16 +0200 |
commit | a6da29686729eb50e92c14c9e74857526ebc3da5 (patch) | |
tree | 609380066aac7f25386d48418a925edd43fad777 /lib/smb.c | |
parent | bfa03091752408c6b2db6657587aba04ff9b2874 (diff) | |
download | curl-a6da29686729eb50e92c14c9e74857526ebc3da5.tar.gz |
vtls: only store TIMER_APPCONNECT for non-proxy connect
Introducing a 'isproxy' argument to the connect function so that it
knows wether to store the time stamp or not.
Reported-by: Yongkang Huang
Fixes #7274
Closes #7274
Diffstat (limited to 'lib/smb.c')
-rw-r--r-- | lib/smb.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -670,7 +670,7 @@ static CURLcode smb_connection_state(struct Curl_easy *data, bool *done) #ifdef USE_SSL if((conn->handler->flags & PROTOPT_SSL)) { bool ssl_done = FALSE; - result = Curl_ssl_connect_nonblocking(data, conn, + result = Curl_ssl_connect_nonblocking(data, conn, FALSE, FIRSTSOCKET, &ssl_done); if(result && result != CURLE_AGAIN) return result; |