From 343844c13863d00b3210d11956056af8b1d367ce Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Thu, 15 Mar 2001 00:51:09 +0000 Subject: Eek! So the service's URL isn't set until after this is initialized. This 2001-03-14 Jeffrey Stedfast * providers/imap/camel-imap-store.c (camel_imap_store_init): Eek! So the service's URL isn't set until after this is initialized. This means we can't check for SSL here. (imap_connect): Set the SSL options here instead. svn path=/trunk/; revision=8715 --- camel/camel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'camel/camel.c') diff --git a/camel/camel.c b/camel/camel.c index 4aa4512722..38ad4a9a09 100644 --- a/camel/camel.c +++ b/camel/camel.c @@ -54,7 +54,7 @@ camel_init (const char *certdb) #ifdef HAVE_NSS PR_Init (PR_SYSTEM_THREAD, PR_PRIORITY_NORMAL, 10); - if (NSS_Init (certdb) == SECFailure) { + if (NSS_Init ("/home/fejj/.mozilla/default") == SECFailure) { g_warning ("Failed to initialize NSS"); return -1; } -- cgit