summaryrefslogtreecommitdiff
path: root/toolkit/xre
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2020-01-14 13:14:57 +0100
committerwolfbeast <mcwerewolf@wolfbeast.com>2020-01-14 13:14:57 +0100
commitcbdcfa3c7e41666fafa94250881c653fc4764634 (patch)
tree87bf409210f5f1264ae0209f3299894dba511425 /toolkit/xre
parentcc8c0c29f03c4e60a49959cd3657b4fa473db570 (diff)
downloaduxp-cbdcfa3c7e41666fafa94250881c653fc4764634.tar.gz
Fix comments for NSS PBKDF setup (no code change)
Diffstat (limited to 'toolkit/xre')
-rw-r--r--toolkit/xre/nsAppRunner.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
index ab3f3881da..b27e466977 100644
--- a/toolkit/xre/nsAppRunner.cpp
+++ b/toolkit/xre/nsAppRunner.cpp
@@ -2806,7 +2806,8 @@ XREMain::XRE_mainInit(bool* aExitFlag)
// Allow iteration counts in DBM mode
SaveToEnv("NSS_ALLOW_LEGACY_DBM_ITERATION_COUNT=1");
// Set default Master Password rounds to a sane value for DBM which is slower
- // than SQL for PKDBF. The NSS hard-coded default of 10,000 is too much.
+ // than SQL for PBKDF. The NSS hard-coded default of 10,000 is too much.
+ // See also Bug 1606992 for perf issues.
#ifdef DEBUG
SaveToEnv("NSS_MAX_MP_PBE_ITERATION_COUNT=15");
#else