From: Renaud Lehoux Date: Mon, 30 May 2016 16:10:23 +0000 (+0200) Subject: mbedtls: removed unused variables X-Git-Tag: curl-7_50_0~83 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2072b4ae4f337a46283bfcc98a6f42c063d43bdf;p=thirdparty%2Fcurl.git mbedtls: removed unused variables Closes #838 --- diff --git a/lib/vtls/mbedtls.c b/lib/vtls/mbedtls.c index ef0b9492ab..fafaef675a 100644 --- a/lib/vtls/mbedtls.c +++ b/lib/vtls/mbedtls.c @@ -161,13 +161,7 @@ mbed_connect_step1(struct connectdata *conn, struct SessionHandle *data = conn->data; struct ssl_connect_data* connssl = &conn->ssl[sockindex]; - bool sni = TRUE; /* default is SNI enabled */ int ret = -1; -#ifdef ENABLE_IPV6 - struct in6_addr addr; -#else - struct in_addr addr; -#endif void *old_session = NULL; char errorbuf[128]; errorbuf[0]=0; @@ -177,8 +171,6 @@ mbed_connect_step1(struct connectdata *conn, failf(data, "mbedTLS does not support SSLv2"); return CURLE_SSL_CONNECT_ERROR; } - else if(data->set.ssl.version == CURL_SSLVERSION_SSLv3) - sni = FALSE; /* SSLv3 has no SNI */ #ifdef THREADING_SUPPORT entropy_init_mutex(&entropy);