summaryrefslogtreecommitdiffstats
path: root/security/manager
diff options
context:
space:
mode:
authorJustOff <Off.Just.Off@gmail.com>2018-06-06 15:41:35 +0300
committerwolfbeast <mcwerewolf@gmail.com>2018-06-06 15:24:07 +0200
commit6603359347ef42b4cee2890a27b4e1321e4decf5 (patch)
treecfbbf49df3acc7d02a9d6f6f25a77b3f5dda0a08 /security/manager
parent6f84242a3526c6889950b43d29f1c47d05b918b2 (diff)
downloadUXP-6603359347ef42b4cee2890a27b4e1321e4decf5.tar
UXP-6603359347ef42b4cee2890a27b4e1321e4decf5.tar.gz
UXP-6603359347ef42b4cee2890a27b4e1321e4decf5.tar.lz
UXP-6603359347ef42b4cee2890a27b4e1321e4decf5.tar.xz
UXP-6603359347ef42b4cee2890a27b4e1321e4decf5.zip
Request NSS to use DBM as the storage file format
Diffstat (limited to 'security/manager')
-rw-r--r--security/manager/ssl/nsNSSComponent.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/security/manager/ssl/nsNSSComponent.cpp b/security/manager/ssl/nsNSSComponent.cpp
index 1bcdcc1b0..025f4bda2 100644
--- a/security/manager/ssl/nsNSSComponent.cpp
+++ b/security/manager/ssl/nsNSSComponent.cpp
@@ -1828,11 +1828,11 @@ nsNSSComponent::InitializeNSS()
if (!nocertdb && !profileStr.IsEmpty()) {
// First try to initialize the NSS DB in read/write mode.
// Only load PKCS11 modules if we're not in safe mode.
- init_rv = ::mozilla::psm::InitializeNSS(profileStr.get(), false, !inSafeMode);
+ init_rv = ::mozilla::psm::InitializeNSS(profileStr, false, !inSafeMode);
// If that fails, attempt read-only mode.
if (init_rv != SECSuccess) {
MOZ_LOG(gPIPNSSLog, LogLevel::Debug, ("could not init NSS r/w in %s\n", profileStr.get()));
- init_rv = ::mozilla::psm::InitializeNSS(profileStr.get(), true, !inSafeMode);
+ init_rv = ::mozilla::psm::InitializeNSS(profileStr, true, !inSafeMode);
}
if (init_rv != SECSuccess) {
MOZ_LOG(gPIPNSSLog, LogLevel::Debug, ("could not init in r/o either\n"));