From: Marcel Raad Date: Thu, 30 Mar 2017 08:35:46 +0000 (+0200) Subject: schannel: fix unused variable warning X-Git-Tag: curl-7_54_0~72 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f104f7d914e1d802bdedcfcae6116eeab4a4a43e;p=curl schannel: fix unused variable warning If CURL_DISABLE_VERBOSE_STRINGS is defined, hostname is not used in schannel_connect_step3. --- 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