# HG changeset patch # User Stu Tomlinson # Date 1178199547 0 # Node ID 2a98d8b6095ec7bf78fcca2692f082c69274dffd # Parent 422bcef3154cbbc4926a9022b5057ce404224715 Proabably fixes ticket #578, it's the recommended way of initializing NSS Use NSS_NoDB_Init(".") instead of NSS_NoDB_Init(NULL) diff -r 422bcef3154c -r 2a98d8b6095e libpurple/plugins/ssl/ssl-nss.c --- a/libpurple/plugins/ssl/ssl-nss.c Thu May 03 13:12:16 2007 +0000 +++ b/libpurple/plugins/ssl/ssl-nss.c Thu May 03 13:39:07 2007 +0000 @@ -108,7 +108,7 @@ { char *lib; PR_Init(PR_SYSTEM_THREAD, PR_PRIORITY_NORMAL, 1); - NSS_NoDB_Init(NULL); + NSS_NoDB_Init("."); /* TODO: Fix this so autoconf does the work trying to find this lib. */ #ifndef _WIN32