Bug 1164714 - Fix unified compilation bustage on Windows. r=me

CLOSED TREE
This commit is contained in:
Birunthan Mohanathas 2015-05-27 19:37:09 -07:00
parent fcaed6e591
commit 20a5506187

View File

@ -397,7 +397,7 @@ WriteLine(nsIOutputStream* outputStream, const nsACString& string)
// sort blocklist items into lists of serials for each issuer
PLDHashOperator
ProcessEntry(BlocklistItemKey* aHashKey, void* aUserArg)
ProcessBlocklistEntry(BlocklistItemKey* aHashKey, void* aUserArg)
{
BlocklistSaveInfo* saveInfo = reinterpret_cast<BlocklistSaveInfo*>(aUserArg);
CertBlocklistItem item = aHashKey->GetKey();
@ -514,7 +514,7 @@ CertBlocklist::SaveEntries()
return rv;
}
mBlocklist.EnumerateEntries(ProcessEntry, &saveInfo);
mBlocklist.EnumerateEntries(ProcessBlocklistEntry, &saveInfo);
if (!saveInfo.success) {
MOZ_LOG(gCertBlockPRLog, PR_LOG_WARN,
("CertBlocklist::SaveEntries writing revocation data failed"));