diff options
author | Max Khon <fjoe@FreeBSD.org> | 2011-04-17 07:48:23 +0000 |
---|---|---|
committer | Max Khon <fjoe@FreeBSD.org> | 2011-04-17 07:48:23 +0000 |
commit | 0fd83405885e817f9b5821bd7bc1d84c74fcaf4b (patch) | |
tree | 551bdcb913476b2ec9c120b296f5b4673237b48b /devel/pwlib | |
parent | a06182ccda07f095da6ce4d451f1be5bc67ac916 (diff) | |
download | ports-0fd83405885e817f9b5821bd7bc1d84c74fcaf4b.tar.gz ports-0fd83405885e817f9b5821bd7bc1d84c74fcaf4b.zip |
Notes
Diffstat (limited to 'devel/pwlib')
-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: "); + |