diff options
Diffstat (limited to 'devel/pwlib/files/patch-src-ptclib-pssl.cxx')
-rw-r--r-- | devel/pwlib/files/patch-src-ptclib-pssl.cxx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/devel/pwlib/files/patch-src-ptclib-pssl.cxx b/devel/pwlib/files/patch-src-ptclib-pssl.cxx new file mode 100644 index 000000000000..8f39e3fd2f0b --- /dev/null +++ b/devel/pwlib/files/patch-src-ptclib-pssl.cxx @@ -0,0 +1,12 @@ +--- src/ptclib/pssl.cxx.orig 2011-04-17 14:36:07.000000000 +0700 ++++ src/ptclib/pssl.cxx 2011-04-17 14:36:37.000000000 +0700 +@@ -914,8 +914,7 @@ + InitialisationMutex.Signal(); + + // create the new SSL context +- SSL_METHOD * meth = SSLv23_method(); +- context = SSL_CTX_new(meth); ++ context = SSL_CTX_new(SSLv23_method()); + if (context == NULL) + PSSLAssert("Error creating context: "); + |