summaryrefslogtreecommitdiff
path: root/net-im/licq/files/patch-socket.cpp
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2004-10-12 04:15:58 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2004-10-12 04:15:58 +0000
commit4dc4982ee30ba13095957ce1b0311ecfa3700c3c (patch)
tree97ff2f96bbcb398c848ec5723b8700da566d7b12 /net-im/licq/files/patch-socket.cpp
parent- update to 0.93.95b (diff)
- update to 1.3.0
Notes
Notes: svn path=/head/; revision=118767
Diffstat (limited to '')
-rw-r--r--net-im/licq/files/patch-socket.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/net-im/licq/files/patch-socket.cpp b/net-im/licq/files/patch-socket.cpp
index b13f17e44d56..be0b88a6038b 100644
--- a/net-im/licq/files/patch-socket.cpp
+++ b/net-im/licq/files/patch-socket.cpp
@@ -30,21 +30,3 @@
if (connect(m_nDescriptor, (struct sockaddr *)&m_sRemoteAddr, sizeofSockaddr) < 0)
{
// errno has been set
-@@ -1078,7 +1084,7 @@
- bool TCPSocket::SecureConnect()
- {
- pthread_mutex_init(&mutex_ssl, NULL);
-- m_pSSL = SSL_new(gSSL_CTX);
-+ m_p_SSL = SSL_new(gSSL_CTX);
- #ifdef SSL_DEBUG
- m_pSSL->debug = 1;
- #endif
-@@ -1111,7 +1117,7 @@
- {
- pthread_mutex_init(&mutex_ssl, NULL);
-
-- m_pSSL = SSL_new(gSSL_CTX);
-+ m_p_SSL = SSL_new(gSSL_CTX);
- SSL_set_session(m_pSSL, NULL);
- SSL_set_fd(m_pSSL, m_nDescriptor);
- int i = SSL_accept(m_pSSL);