mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 17:31:47 +09:00
Request NSS to use DBM as the storage file format
This commit is contained in:
parent
8c296a9714
commit
7ff80ee648
4 changed files with 17 additions and 5 deletions
|
|
@ -22,6 +22,7 @@
|
|||
#include "mozilla/Unused.h"
|
||||
#include "nsNSSCertificate.h"
|
||||
#include "nsServiceManagerUtils.h"
|
||||
#include "nsThreadUtils.h"
|
||||
#include "nss.h"
|
||||
#include "pk11pub.h"
|
||||
#include "pkix/Result.h"
|
||||
|
|
@ -1087,8 +1088,10 @@ NSSCertDBTrustDomain::NoteAuxiliaryExtension(AuxiliaryExtension extension,
|
|||
}
|
||||
|
||||
SECStatus
|
||||
InitializeNSS(const char* dir, bool readOnly, bool loadPKCS11Modules)
|
||||
InitializeNSS(const nsACString& dir, bool readOnly, bool loadPKCS11Modules)
|
||||
{
|
||||
MOZ_ASSERT(NS_IsMainThread());
|
||||
|
||||
// The NSS_INIT_NOROOTINIT flag turns off the loading of the root certs
|
||||
// module by NSS_Initialize because we will load it in InstallLoadableRoots
|
||||
// later. It also allows us to work around a bug in the system NSS in
|
||||
|
|
@ -1101,7 +1104,10 @@ InitializeNSS(const char* dir, bool readOnly, bool loadPKCS11Modules)
|
|||
if (!loadPKCS11Modules) {
|
||||
flags |= NSS_INIT_NOMODDB;
|
||||
}
|
||||
return ::NSS_Initialize(dir, "", "", SECMOD_DB, flags);
|
||||
nsAutoCString dbTypeAndDirectory;
|
||||
dbTypeAndDirectory.Append("dbm:");
|
||||
dbTypeAndDirectory.Append(dir);
|
||||
return ::NSS_Initialize(dbTypeAndDirectory.get(), "", "", SECMOD_DB, flags);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
|
|
@ -36,7 +36,8 @@ enum class NetscapeStepUpPolicy : uint32_t {
|
|||
NeverMatch = 3,
|
||||
};
|
||||
|
||||
SECStatus InitializeNSS(const char* dir, bool readOnly, bool loadPKCS11Modules);
|
||||
SECStatus InitializeNSS(const nsACString& dir, bool readOnly,
|
||||
bool loadPKCS11Modules);
|
||||
|
||||
void DisableMD5();
|
||||
|
||||
|
|
|
|||
|
|
@ -68,6 +68,11 @@ if CONFIG['_MSC_VER']:
|
|||
# class copy constructor is inaccessible or deleted
|
||||
'-wd4626', # assignment operator could not be generated because a base
|
||||
# class assignment operator is inaccessible or deleted
|
||||
'-wd4628', # digraphs not supported with -Ze (nsThreadUtils.h includes
|
||||
# what would be the digraph "<:" in the expression
|
||||
# "mozilla::EnableIf<::detail::...". Since we don't want it
|
||||
# interpreted as a digraph anyway, we can disable the
|
||||
# warning.)
|
||||
'-wd4640', # construction of local static object is not thread-safe
|
||||
'-wd4710', # 'function': function not inlined
|
||||
'-wd4711', # function 'function' selected for inline expansion
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue