Commit 2072b4ae authored by Renaud Lehoux's avatar Renaud Lehoux Committed by Daniel Stenberg
Browse files

mbedtls: removed unused variables

Closes #838
parent 071c5613
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
@@ -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);