A patch from fqueze to prevent re-initalization of the SSL stuff. Fixes #7764.

Wed, 17 Dec 2008 02:04:37 +0000

author
Daniel Atallah <datallah@pidgin.im>
date
Wed, 17 Dec 2008 02:04:37 +0000
changeset 25216
0dc178eff164
parent 25215
73401ad3fefc
child 25218
cfb8e08106e3

A patch from fqueze to prevent re-initalization of the SSL stuff. Fixes #7764.

libpurple/sslconn.c file | annotate | diff | comparison | revisions
--- a/libpurple/sslconn.c	Wed Dec 17 01:33:10 2008 +0000
+++ b/libpurple/sslconn.c	Wed Dec 17 02:04:37 2008 +0000
@@ -57,7 +57,7 @@
 		return FALSE;
 	}
 
-	return ops->init();
+	return (_ssl_initialized = ops->init());
 }
 
 gboolean

mercurial