summarylogtreecommitdiffstats
path: root/sslv23.patch
diff options
context:
space:
mode:
Diffstat (limited to 'sslv23.patch')
-rw-r--r--sslv23.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/sslv23.patch b/sslv23.patch
new file mode 100644
index 000000000000..bd20e2600a27
--- /dev/null
+++ b/sslv23.patch
@@ -0,0 +1,13 @@
+diff --git a/thrift-0.9.3/lib/cpp/src/thrift/transport/TSSLSocket.cpp b/thrift-0.9.3/lib/cpp/src/thrift/transport/TSSLSocket.cpp
+index 98c5326..cb8ef6e 100644
+--- a/thrift-0.9.3/lib/cpp/src/thrift/transport/TSSLSocket.cpp
++++ b/thrift-0.9.3/lib/cpp/src/thrift/transport/TSSLSocket.cpp
+@@ -140,7 +140,7 @@ SSLContext::SSLContext(const SSLProtocol& protocol) {
+ if (protocol == SSLTLS) {
+ ctx_ = SSL_CTX_new(SSLv23_method());
+ } else if (protocol == SSLv3) {
+- ctx_ = SSL_CTX_new(SSLv3_method());
++ ctx_ = SSL_CTX_new(SSLv23_method());
+ } else if (protocol == TLSv1_0) {
+ ctx_ = SSL_CTX_new(TLSv1_method());
+ } else if (protocol == TLSv1_1) {