diff options
author | MAntoniak <47522782+MAntoniak@users.noreply.github.com> | 2021-07-17 22:43:52 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-08-14 23:19:24 +0200 |
commit | fd84db600d2ace530ad17616cb21d8b78b02840d (patch) | |
tree | 8b5b5293b03a5777922d612ae8b77b653679db6b /lib/vtls | |
parent | 7698a365aed564d8c17d83ca02ddbefde0c2adc8 (diff) | |
download | curl-fd84db600d2ace530ad17616cb21d8b78b02840d.tar.gz |
build: fix compiler warnings
For when CURL_DISABLE_VERBOSE_STRINGS and DEBUGBUILD flags are both
active.
- socks.c : warning C4100: 'lineno': unreferenced formal parameter
(co-authored by Daniel Stenberg)
- mbedtls.c: warning C4189: 'port': local variable is initialized but
not referenced
- schannel.c: warning C4189: 'hostname': local variable is initialized
but not referenced
Cloes #7528
Diffstat (limited to 'lib/vtls')
-rw-r--r-- | lib/vtls/mbedtls.c | 2 | ||||
-rw-r--r-- | lib/vtls/schannel.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lib/vtls/mbedtls.c b/lib/vtls/mbedtls.c index a61ff061c..30ef67f6d 100644 --- a/lib/vtls/mbedtls.c +++ b/lib/vtls/mbedtls.c @@ -277,7 +277,9 @@ mbed_connect_step1(struct Curl_easy *data, struct connectdata *conn, const struct curl_blob *ssl_cert_blob = SSL_SET_OPTION(primary.cert_blob); const char * const ssl_crlfile = SSL_SET_OPTION(CRLfile); const char * const hostname = SSL_HOST_NAME(); +#ifndef CURL_DISABLE_VERBOSE_STRINGS const long int port = SSL_HOST_PORT(); +#endif int ret = -1; char errorbuf[128]; diff --git a/lib/vtls/schannel.c b/lib/vtls/schannel.c index 7ffba6cc1..1bdec7644 100644 --- a/lib/vtls/schannel.c +++ b/lib/vtls/schannel.c @@ -1364,7 +1364,7 @@ schannel_connect_step3(struct Curl_easy *data, struct connectdata *conn, SECURITY_STATUS sspi_status = SEC_E_OK; CERT_CONTEXT *ccert_context = NULL; bool isproxy = SSL_IS_PROXY(); -#ifdef DEBUGBUILD +#if defined(DEBUGBUILD) && !defined(CURL_DISABLE_VERBOSE_STRINGS) const char * const hostname = SSL_HOST_NAME(); #endif #ifdef HAS_ALPN |