diff options
author | marcus <marcus@FreeBSD.org> | 2007-05-04 03:11:01 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2007-05-04 03:11:01 +0800 |
commit | 9b7d80dfd6b791c076727ce73ed64c8f87f7bd0a (patch) | |
tree | df9c5962151c1a83737f12ddbc9e5893c4d8a343 /net-im/libpurple/files | |
parent | 5f772c8fc4931d6ef6b9cc597432768ac555fa08 (diff) | |
download | freebsd-ports-gnome-9b7d80dfd6b791c076727ce73ed64c8f87f7bd0a.tar.gz freebsd-ports-gnome-9b7d80dfd6b791c076727ce73ed64c8f87f7bd0a.tar.zst freebsd-ports-gnome-9b7d80dfd6b791c076727ce73ed64c8f87f7bd0a.zip |
Correct an NSS initialization error that was causing crashes with certain
protocols.
Reported by: mux
Obtained from: Pidgin SVN
Diffstat (limited to 'net-im/libpurple/files')
-rw-r--r-- | net-im/libpurple/files/patch-libpurple_plugins_ssl_ssl-nss.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net-im/libpurple/files/patch-libpurple_plugins_ssl_ssl-nss.c b/net-im/libpurple/files/patch-libpurple_plugins_ssl_ssl-nss.c new file mode 100644 index 000000000000..13e52ccfb4aa --- /dev/null +++ b/net-im/libpurple/files/patch-libpurple_plugins_ssl_ssl-nss.c @@ -0,0 +1,11 @@ +--- libpurple/plugins/ssl/ssl-nss.c.orig Thu May 3 14:58:39 2007 ++++ libpurple/plugins/ssl/ssl-nss.c Thu May 3 15:05:59 2007 +@@ -108,7 +108,7 @@ ssl_nss_init_nss(void) + { + 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 |