mirror of
https://github.com/curl/curl.git
synced 2025-04-12 16:20:35 +08:00
schannel SSL: fix compiler warning
This commit is contained in:
parent
8f92e8be12
commit
293c9288b3
@ -290,7 +290,9 @@ schannel_connect_step2(struct connectdata *conn, int sockindex)
|
||||
SECURITY_STATUS sspi_status = SEC_E_OK;
|
||||
TCHAR *host_name;
|
||||
CURLcode code;
|
||||
bool doread = connssl->connecting_state != ssl_connect_2_writing;
|
||||
bool doread;
|
||||
|
||||
doread = (connssl->connecting_state != ssl_connect_2_writing)?TRUE:FALSE;
|
||||
|
||||
infof(data, "schannel: SSL/TLS connection with %s port %hu (step 2/3)\n",
|
||||
conn->host.name, conn->remote_port);
|
||||
|
Loading…
x
Reference in New Issue
Block a user