Skip to content
Snippets Groups Projects
Commit 293c9288 authored by Yang Tse's avatar Yang Tse
Browse files

schannel SSL: fix compiler warning

parent 8f92e8be
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment