From c6c8475902fd6b0027801e3ea9cfbb5b38e8fb6b Mon Sep 17 00:00:00 2001 From: Robert Strong Date: Fri, 3 Oct 2014 16:48:58 -0400 Subject: [PATCH] Mac v2 signing - Bug 1075981 - Fix loading libnss3.dylib for weave. r=rnewman --- services/crypto/modules/WeaveCrypto.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/crypto/modules/WeaveCrypto.js b/services/crypto/modules/WeaveCrypto.js index 290efc822b37..3a395a1c588c 100644 --- a/services/crypto/modules/WeaveCrypto.js +++ b/services/crypto/modules/WeaveCrypto.js @@ -138,7 +138,7 @@ WeaveCrypto.prototype = { } catch(e) { // In case opening the library without a full path fails, // try again with a full path. - let file = Services.dirsvc.get("GreD", Ci.nsILocalFile); + let file = Services.dirsvc.get("GreBinD", Ci.nsILocalFile); file.append(path); this.log("Trying again with path " + file.path); nsslib = ctypes.open(file.path);