From f104f7d914e1d802bdedcfcae6116eeab4a4a43e Mon Sep 17 00:00:00 2001 From: Marcel Raad Date: Thu, 30 Mar 2017 10:35:46 +0200 Subject: schannel: fix unused variable warning If CURL_DISABLE_VERBOSE_STRINGS is defined, hostname is not used in schannel_connect_step3. --- lib/vtls/schannel.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/vtls') diff --git a/lib/vtls/schannel.c b/lib/vtls/schannel.c index 0f59d9c4d..6d83e9ed1 100644 --- a/lib/vtls/schannel.c +++ b/lib/vtls/schannel.c @@ -690,8 +690,10 @@ schannel_connect_step3(struct connectdata *conn, int sockindex) struct ssl_connect_data *connssl = &conn->ssl[sockindex]; SECURITY_STATUS sspi_status = SEC_E_OK; CERT_CONTEXT *ccert_context = NULL; +#ifndef CURL_DISABLE_VERBOSE_STRINGS const char * const hostname = SSL_IS_PROXY() ? conn->http_proxy.host.name : conn->host.name; +#endif #ifdef HAS_ALPN SecPkgContext_ApplicationProtocol alpn_result; #endif -- cgit v1.2.3