diff options
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/network-openssl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/network-openssl.c b/src/core/network-openssl.c index 9e15d5c7..9fddf073 100644 --- a/src/core/network-openssl.c +++ b/src/core/network-openssl.c @@ -384,7 +384,9 @@ static GIOFuncs irssi_ssl_channel_funcs = { gboolean irssi_ssl_init(void) { +#if (OPENSSL_VERSION_NUMBER >= 0x10002000L) int success; +#endif #if (OPENSSL_VERSION_NUMBER >= 0x10100000L) && !defined(LIBRESSL_VERSION_NUMBER) if (!OPENSSL_init_ssl(OPENSSL_INIT_SSL_DEFAULT, NULL)) { @@ -411,8 +413,6 @@ gboolean irssi_ssl_init(void) store = NULL; /* Don't return an error; the user might have their own cafile/capath. */ } -#else - success = success = TRUE; #endif ssl_inited = TRUE; |