From 590fb70102b44fe65c4f8d469c452228b8dfcbb1 Mon Sep 17 00:00:00 2001 From: vpeter4 Date: Sun, 27 Apr 2014 13:22:09 +0200 Subject: [PATCH] Conditionally declare variable --- lib/client.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/client.c b/lib/client.c index a87ef2a..19a819d 100755 --- a/lib/client.c +++ b/lib/client.c @@ -131,8 +131,10 @@ int lws_client_socket_service(struct libwebsocket_context *context, /* we can retry this... just cook the SSL BIO the first time */ if (wsi->use_ssl && !wsi->ssl) { +#if defined(CYASSL_SNI_HOST_NAME) || defined(SSL_CTRL_SET_TLSEXT_HOSTNAME) const char *hostname = lws_hdr_simple_ptr(wsi, _WSI_TOKEN_CLIENT_PEER_ADDRESS); +#endif wsi->ssl = SSL_new(context->ssl_client_ctx); #ifndef USE_CYASSL -- 2.7.4