Skip to content

Commit

Permalink
Bug 1164714 - Fix unified compilation bustage on Windows. r=me
Browse files Browse the repository at this point in the history
CLOSED TREE
  • Loading branch information
poiru committed May 28, 2015
1 parent 649a359 commit e0f8eac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions security/manager/ssl/CertBlocklist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -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"));
Expand Down

0 comments on commit e0f8eac

Please sign in to comment.