ptlib: 2.10.10 -> 2.10.11, add check for SSLv3

This commit is contained in:
Robin Gloster
2016-02-07 13:52:17 +00:00
committed by Franz Pletz
parent 347c1ed8a0
commit b08247f1e4
2 changed files with 21 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
--- ptlib-2.10.11/src/ptclib/pssl.cxx 2016-02-07 09:54:36.326325637 +0000
+++ ptlib-2.10.11/src/ptclib/pssl.cxx 2016-02-07 09:55:55.677870908 +0000
@@ -805,11 +805,13 @@
SSL_METHOD * meth;
switch (method) {
+#if !defined(OPENSSL_NO_SSL3)
case SSLv3:
meth = SSLv3_method();
break;
+#endif
case TLSv1:
meth = TLSv1_method();
break;
case SSLv23:
default: