Changeset 3720
- Timestamp:
- 07/16/08 12:46:48
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/libtinymail-camel/camel-lite/camel/camel-tcp-stream-ssl.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r3718 r3720 1 2008-07-16 Sergio Villar Senin <svillar@igalia.com> 2 3 * libtinymail-camel/camel-lite/camel/camel-tcp-stream-ssl.c: added 4 some code that properly checks the result of the call to 5 NSS_InitReadWrite. 6 1 7 2008-07-04 Jose Dapena Paz <jdapena@igalia.com> 2 8 trunk/libtinymail-camel/camel-lite/camel/camel-tcp-stream-ssl.c
r3678 r3720 299 299 if (!str) 300 300 str = g_strdup (g_get_tmp_dir ()); 301 NSS_InitReadWrite (str); 301 302 if (NSS_InitReadWrite (str) == SECFailure) { 303 /* fall back on using volatile dbs? */ 304 if (NSS_NoDB_Init (str) == SECFailure) { 305 g_warning ("Failed to initialize NSS"); 306 g_free (str); 307 stream->priv->session = NULL; 308 camel_stream_close (stream); 309 camel_object_unref (stream); 310 return NULL; 311 } 312 } 302 313 has_init = TRUE; 303 314 g_free (str);
