summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-misc/omnisync/files/omnisync-1.0-openssl11.patch')
-rw-r--r--net-misc/omnisync/files/omnisync-1.0-openssl11.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/net-misc/omnisync/files/omnisync-1.0-openssl11.patch b/net-misc/omnisync/files/omnisync-1.0-openssl11.patch
deleted file mode 100644
index 8c0d9c243338..000000000000
--- a/net-misc/omnisync/files/omnisync-1.0-openssl11.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -aurN a/mssl.c b/mssl.c
---- a/mssl.c 2009-01-02 04:03:20.000000000 -0500
-+++ b/mssl.c 2018-06-01 20:59:26.447052020 -0400
-@@ -136,14 +136,20 @@
- if (!bio_err)
- {
- SSL_library_init();
-+#if OPENSSL_API_COMPAT < 0x10100000L
- SSL_load_error_strings();
-+#endif
-
- /* error write context */
- bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
- }
-
- /* create context */
-+#if OPENSSL_API_COMPAT < 0x10100000L
- meth = SSLv23_method();
-+#else
-+ meth = TLS_method();
-+#endif
-
- return SSL_CTX_new(meth);
- }