diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-03-15 08:51:09 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-03-15 08:51:09 +0800 |
commit | 343844c13863d00b3210d11956056af8b1d367ce (patch) | |
tree | 4dcc10acea574a0c04faade1ce13a8e33e150782 /camel/camel.c | |
parent | 1e9f8b5d127babb1837cf9572ff784a6173be244 (diff) | |
download | gsoc2013-evolution-343844c13863d00b3210d11956056af8b1d367ce.tar gsoc2013-evolution-343844c13863d00b3210d11956056af8b1d367ce.tar.gz gsoc2013-evolution-343844c13863d00b3210d11956056af8b1d367ce.tar.bz2 gsoc2013-evolution-343844c13863d00b3210d11956056af8b1d367ce.tar.lz gsoc2013-evolution-343844c13863d00b3210d11956056af8b1d367ce.tar.xz gsoc2013-evolution-343844c13863d00b3210d11956056af8b1d367ce.tar.zst gsoc2013-evolution-343844c13863d00b3210d11956056af8b1d367ce.zip |
Eek! So the service's URL isn't set until after this is initialized. This
2001-03-14 Jeffrey Stedfast <fejj@ximian.com>
* 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
Diffstat (limited to 'camel/camel.c')
-rw-r--r-- | camel/camel.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |