]> git.pld-linux.org Git - packages/ptlib.git/blob - disable-sslv3.patch
- rel 4; fix build & openssl build and disable odbc as seriously conflicting with...
[packages/ptlib.git] / disable-sslv3.patch
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;
6  
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;
This page took 0.101953 seconds and 3 git commands to generate.