Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit

Permalink
Suppress the GrayListedLeaf error code (#42875)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartonjs authored Mar 25, 2020
1 parent 68a30c4 commit 047eee0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ static void MergeStatusCodes(CFTypeRef key, CFTypeRef value, void* context)
// just ignore it for now.
}
else if (CFEqual(keyString, CFSTR("NonEmptySubject")) || CFEqual(keyString, CFSTR("GrayListedKey")) ||
CFEqual(keyString, CFSTR("CTRequired")))
CFEqual(keyString, CFSTR("CTRequired")) || CFEqual(keyString, CFSTR("GrayListedLeaf")))
{
// Not a "problem" that we report.
}
Expand Down

0 comments on commit 047eee0

Please sign in to comment.