db-move: moved seahorse from [testing] to [extra] (x86_64)
[arch-packages.git] / ptlib / trunk / disable-sslv3.patch
blob172884160cefc4c21b2ccbf50df97fb77104a1c3
1 diff -u -r ptlib-2.10.11/src/ptclib/pssl.cxx ptlib-2.10.11-nossl3/src/ptclib/pssl.cxx
2 --- ptlib-2.10.11/src/ptclib/pssl.cxx 2013-08-15 01:20:27.000000000 +0200
3 +++ ptlib-2.10.11-nossl3/src/ptclib/pssl.cxx 2016-03-03 11:39:02.224835510 +0100
4 @@ -805,13 +805,11 @@
5 SSL_METHOD * meth;
7 switch (method) {
8 - case SSLv3:
9 - meth = SSLv3_method();
10 - break;
11 case TLSv1:
12 meth = TLSv1_method();
13 break;
14 case SSLv23:
15 + case SSLv3:
16 default:
17 meth = SSLv23_method();
18 break;