changeset 16820:2a98d8b6095e

Proabably fixes ticket #578, it's the recommended way of initializing NSS Use NSS_NoDB_Init(".") instead of NSS_NoDB_Init(NULL)
author Stu Tomlinson <stu@nosnilmot.com>
date Thu, 03 May 2007 13:39:07 +0000
parents 422bcef3154c
children 02867a434634
files libpurple/plugins/ssl/ssl-nss.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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