aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-tcp-stream-ssl.c
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2001-05-11 06:03:08 +0800
committerChris Toshok <toshok@src.gnome.org>2001-05-11 06:03:08 +0800
commitb3424b533c56e19853428a95f71d261836a1e701 (patch)
tree47f7471f114551940f9b86b5a4348812c461fd8b /camel/camel-tcp-stream-ssl.c
parent23dbc72fd36b02208dc6bfdd68d97870434db18a (diff)
downloadgsoc2013-evolution-b3424b533c56e19853428a95f71d261836a1e701.tar
gsoc2013-evolution-b3424b533c56e19853428a95f71d261836a1e701.tar.gz
gsoc2013-evolution-b3424b533c56e19853428a95f71d261836a1e701.tar.bz2
gsoc2013-evolution-b3424b533c56e19853428a95f71d261836a1e701.tar.lz
gsoc2013-evolution-b3424b533c56e19853428a95f71d261836a1e701.tar.xz
gsoc2013-evolution-b3424b533c56e19853428a95f71d261836a1e701.tar.zst
gsoc2013-evolution-b3424b533c56e19853428a95f71d261836a1e701.zip
call SSL_Enable after the SSL_ImportFD and before PR_Connect. Otherwise,
2001-05-10 Chris Toshok <toshok@ximian.com> * camel-tcp-stream-ssl.c (stream_connect): call SSL_Enable after the SSL_ImportFD and before PR_Connect. Otherwise, NSS aborts during the connect. svn path=/trunk/; revision=9751
Diffstat (limited to 'camel/camel-tcp-stream-ssl.c')
-rw-r--r--camel/camel-tcp-stream-ssl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/camel/camel-tcp-stream-ssl.c b/camel/camel-tcp-stream-ssl.c
index 2a9a0fb602..6d5e25e37a 100644
--- a/camel/camel-tcp-stream-ssl.c
+++ b/camel/camel-tcp-stream-ssl.c
@@ -393,7 +393,8 @@ stream_connect (CamelTcpStream *stream, struct hostent *host, int port)
fd = PR_OpenTCPSocket (host->h_addrtype);
ssl_fd = SSL_ImportFD (NULL, fd);
-
+
+ SSL_Enable (ssl_fd, SSL_SECURITY, PR_TRUE);
SSL_SetURL (ssl_fd, ssl->priv->expected_host);
if (ssl_fd == NULL || PR_Connect (ssl_fd, &netaddr, timeout) == PR_FAILURE) {