forked from pool/libimobiledevice
- libimobiledevice-nosslv3.patch: In tumbleweed, SSLv3_method fails because there is no sslv3 support, use SSLv233_method instead to negotiate the highest TLS version available. OBS-URL: https://build.opensuse.org/request/show/317451 OBS-URL: https://build.opensuse.org/package/show/hardware/libimobiledevice?expand=0&rev=6
12 lines
422 B
Diff
12 lines
422 B
Diff
--- libimobiledevice-1.2.0.orig/src/idevice.c
|
|
+++ libimobiledevice-1.2.0/src/idevice.c
|
|
@@ -678,7 +678,7 @@ LIBIMOBILEDEVICE_API idevice_error_t ide
|
|
}
|
|
BIO_set_fd(ssl_bio, (int)(long)connection->data, BIO_NOCLOSE);
|
|
|
|
- SSL_CTX *ssl_ctx = SSL_CTX_new(SSLv3_method());
|
|
+ SSL_CTX *ssl_ctx = SSL_CTX_new(SSLv23_method());
|
|
if (ssl_ctx == NULL) {
|
|
debug_info("ERROR: Could not create SSL context.");
|
|
BIO_free(ssl_bio);
|