diff options
-rw-r--r-- | src/idevice.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/idevice.c b/src/idevice.c index 2f4e9ce..19b171c 100644 --- a/src/idevice.c +++ b/src/idevice.c | |||
@@ -1223,7 +1223,8 @@ LIBIMOBILEDEVICE_API idevice_error_t idevice_connection_enable_ssl(idevice_conne | |||
1223 | return ret; | 1223 | return ret; |
1224 | } | 1224 | } |
1225 | 1225 | ||
1226 | #if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER) | 1226 | #if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER) || \ |
1227 | (defined(LIBRESSL_VERSION_NUMBER) && (LIBRESSL_VERSION_NUMBER >= 0x3060000fL)) | ||
1227 | SSL_CTX_set_security_level(ssl_ctx, 0); | 1228 | SSL_CTX_set_security_level(ssl_ctx, 0); |
1228 | #endif | 1229 | #endif |
1229 | 1230 | ||