# HG changeset patch # User William Ehlhardt # Date 1188271898 0 # Node ID c3405700c2fe1fff40c4d6074c9419a3806d140b # Parent 23f4d2ded5007d7ada4f4056488decf6a902adf6 - Change assert on ssl init failure to a mere warning diff -r 23f4d2ded500 -r c3405700c2fe libpurple/sslconn.c --- a/libpurple/sslconn.c Tue Aug 28 01:57:49 2007 +0000 +++ b/libpurple/sslconn.c Tue Aug 28 03:31:38 2007 +0000 @@ -297,7 +297,10 @@ /* Although purple_ssl_is_supported will do the initialization on command, SSL plugins tend to register CertificateSchemes as well as providing SSL ops. */ - g_assert(ssl_init()); + if ( !ssl_init() ) { + purple_debug_error("sslconn", + "SSL subsystem failed to init!\n"); + } } void