From 6cb7b0c0acdfc49e289fedfb3d1c29103f47a2e6 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Thu, 25 Dec 2014 17:15:15 +0000 Subject: vtls: Use bool for Curl_ssl_getsessionid() return type The return type of this function is a boolean value, and even uses a bool internally, so use bool in the function declaration as well as the variables that store the return value, to avoid any confusion. --- lib/vtls/curl_schannel.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/vtls/curl_schannel.c') diff --git a/lib/vtls/curl_schannel.c b/lib/vtls/curl_schannel.c index d1f41a797..b3fe52695 100644 --- a/lib/vtls/curl_schannel.c +++ b/lib/vtls/curl_schannel.c @@ -509,7 +509,7 @@ schannel_connect_step3(struct connectdata *conn, int sockindex) struct SessionHandle *data = conn->data; struct ssl_connect_data *connssl = &conn->ssl[sockindex]; struct curl_schannel_cred *old_cred = NULL; - int incache; + bool incache; DEBUGASSERT(ssl_connect_3 == connssl->connecting_state); @@ -550,6 +550,7 @@ schannel_connect_step3(struct connectdata *conn, int sockindex) incache = FALSE; } } + if(!incache) { result = Curl_ssl_addsessionid(conn, (void *)connssl->cred, sizeof(struct curl_schannel_cred)); -- cgit v1.2.3