diff options
Diffstat (limited to 'community/asio/libressl.patch')
-rw-r--r-- | community/asio/libressl.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/community/asio/libressl.patch b/community/asio/libressl.patch deleted file mode 100644 index c62f5230ad..0000000000 --- a/community/asio/libressl.patch +++ /dev/null @@ -1,27 +0,0 @@ -diff --git a/include/asio/ssl/impl/context.ipp b/include/asio/ssl/impl/context.ipp -index 4a66a0a..dfa6cee 100644 ---- a/include/asio/ssl/impl/context.ipp -+++ b/include/asio/ssl/impl/context.ipp -@@ -88,6 +88,14 @@ context::context(context::method m) - handle_ = ::SSL_CTX_new(::SSLv2_server_method()); - break; - #endif // defined(OPENSSL_NO_SSL2) -+#if defined(OPENSSL_NO_SSL3) -+ case context::sslv3: -+ case context::sslv3_client: -+ case context::sslv3_server: -+ asio::detail::throw_error( -+ asio::error::invalid_argument, "context"); -+ break; -+#else - case context::sslv3: - handle_ = ::SSL_CTX_new(::SSLv3_method()); - break; -@@ -97,6 +105,7 @@ context::context(context::method m) - case context::sslv3_server: - handle_ = ::SSL_CTX_new(::SSLv3_server_method()); - break; -+#endif - case context::tlsv1: - handle_ = ::SSL_CTX_new(::TLSv1_method()); - break; |