comparison libpurple/sslconn.c @ 19504:d5ecaf5bce93

Fix the win32 build for the cert SoC branch merge.
author Daniel Atallah <daniel.atallah@gmail.com>
date Tue, 28 Aug 2007 03:15:48 +0000
parents ab7cd6c95b2f
children 7086c311867a
comparison
equal deleted inserted replaced
19503:2f0960548c1d 19504:d5ecaf5bce93
295 purple_ssl_init(void) 295 purple_ssl_init(void)
296 { 296 {
297 /* Although purple_ssl_is_supported will do the initialization on 297 /* Although purple_ssl_is_supported will do the initialization on
298 command, SSL plugins tend to register CertificateSchemes as well 298 command, SSL plugins tend to register CertificateSchemes as well
299 as providing SSL ops. */ 299 as providing SSL ops. */
300 g_assert(ssl_init()); 300 if (!ssl_init()) {
301 purple_debug_error("sslconn", "Unable to initialize SSL.\n");
302 }
301 } 303 }
302 304
303 void 305 void
304 purple_ssl_uninit(void) 306 purple_ssl_uninit(void)
305 { 307 {