summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrelyea%netscape.com <devnull@localhost>2002-02-26 02:28:21 +0000
committerrelyea%netscape.com <devnull@localhost>2002-02-26 02:28:21 +0000
commitc07617c4eb0f29cbe4fa7df762e04448b211bec7 (patch)
tree7e27ae83ae06345c39b57bedcf3a3c3fe6eaf9a5
parent3ddfe02bfd1c712d0b72832ca6f2dd260c3ca52f (diff)
downloadnss-hg-c07617c4eb0f29cbe4fa7df762e04448b211bec7.tar.gz
When using global params, noCertDB implies noKeyDB as well bug 127312
-rw-r--r--security/nss/lib/softoken/pk11db.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/security/nss/lib/softoken/pk11db.c b/security/nss/lib/softoken/pk11db.c
index a44c0f94d..8b6295a22 100644
--- a/security/nss/lib/softoken/pk11db.c
+++ b/security/nss/lib/softoken/pk11db.c
@@ -187,6 +187,7 @@ secmod_parseParameters(char *param, pk11_parameters *parsed, PRBool isFIPS)
tokens[index].minPW = minPW ? atoi(minPW) : 0;
tokens[index].readOnly = parsed->readOnly;
tokens[index].noCertDB = parsed->noCertDB;
+ tokens[index].noKeyDB = parsed->noCertDB;
tokens[index].forceOpen = parsed->forceOpen;
tokens[index].pwRequired = parsed->pwRequired;
certPrefix = NULL;