The blob db shim code (bug 162023) introduced a crash (bug 167615) so

disable it for NSS 3.6 Beta1.
This commit is contained in:
wtc%netscape.com 2002-09-12 23:17:35 +00:00
Родитель fec7cccf7a
Коммит 089cef75ad
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -34,7 +34,7 @@
/* /*
* Permanent Certificate database handling code * Permanent Certificate database handling code
* *
* $Id: pcertdb.c,v 1.31 2002/09/06 00:27:49 wtc%netscape.com Exp $ * $Id: pcertdb.c,v 1.32 2002/09/12 23:17:35 wtc%netscape.com Exp $
*/ */
#include "prtime.h" #include "prtime.h"
@ -3752,7 +3752,7 @@ openNewCertDB(const char *appName, const char *prefix, const char *certdbname,
if (appName) { if (appName) {
handle->permCertDB=rdbopen( appName, prefix, "cert", NO_CREATE); handle->permCertDB=rdbopen( appName, prefix, "cert", NO_CREATE);
} else { } else {
handle->permCertDB=dbsopen(certdbname, NO_CREATE, 0600, DB_HASH, 0); handle->permCertDB=dbopen(certdbname, NO_CREATE, 0600, DB_HASH, 0);
} }
/* if create fails then we lose */ /* if create fails then we lose */
@ -3859,7 +3859,7 @@ nsslowcert_OpenPermCertDB(NSSLOWCERTCertDBHandle *handle, PRBool readOnly,
if (appName) { if (appName) {
handle->permCertDB = rdbopen( appName, prefix, "cert", openflags); handle->permCertDB = rdbopen( appName, prefix, "cert", openflags);
} else { } else {
handle->permCertDB = dbsopen( certdbname, openflags, 0600, DB_HASH, 0 ); handle->permCertDB = dbopen( certdbname, openflags, 0600, DB_HASH, 0 );
} }
/* check for correct version number */ /* check for correct version number */