diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-04-17 17:17:22 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-04-19 22:47:36 +0700 |
commit | b7771427ee1cbb1236e903215a8dc5d0b7b4f609 (patch) | |
tree | f848ba67dc2bb1d623c68915de76674c3a53c7ce /libraries/ptlib/ssl3.patch | |
parent | a18c317ad57cb066e96edee40be7e9a9e1de307d (diff) | |
download | slackbuilds-b7771427ee1cbb1236e903215a8dc5d0b7b4f609.tar.gz |
libraries/ptlib: Updated for version 2.10.11.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/ptlib/ssl3.patch')
-rw-r--r-- | libraries/ptlib/ssl3.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/libraries/ptlib/ssl3.patch b/libraries/ptlib/ssl3.patch new file mode 100644 index 0000000000..6fdb7cabea --- /dev/null +++ b/libraries/ptlib/ssl3.patch @@ -0,0 +1,19 @@ +diff -u -r ptlib-2.10.11/src/ptclib/pssl.cxx ptlib-2.10.11-nossl3/src/ptclib/pssl.cxx +--- ptlib-2.10.11/src/ptclib/pssl.cxx 2013-08-15 01:20:27.000000000 +0200 ++++ ptlib-2.10.11-nossl3/src/ptclib/pssl.cxx 2016-03-03 11:39:02.224835510 +0100 +@@ -805,13 +805,11 @@ + SSL_METHOD * meth; + + switch (method) { +- case SSLv3: +- meth = SSLv3_method(); +- break; + case TLSv1: + meth = TLSv1_method(); + break; + case SSLv23: ++ case SSLv3: + default: + meth = SSLv23_method(); + break; + |