From 170e1c445e8c930f4ee9dddfb9f1bcf24c089962 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Thu, 6 Aug 2020 20:43:08 +0200 Subject: idevice: Fix build with LibreSSL --- src/idevice.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/idevice.c b/src/idevice.c index fea1e03..47c9ab4 100644 --- a/src/idevice.c +++ b/src/idevice.c @@ -1015,7 +1015,7 @@ LIBIMOBILEDEVICE_API idevice_error_t idevice_connection_enable_ssl(idevice_conne return ret; } -#if OPENSSL_VERSION_NUMBER >= 0x10100000L +#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER) SSL_CTX_set_security_level(ssl_ctx, 0); #endif -- cgit v1.1-32-gdbae