From 14433dabc6918b361ebea32c00ca84b8d7950645 Mon Sep 17 00:00:00 2001 From: Ian Young Date: Tue, 16 Jun 2009 11:27:41 +0000 Subject: [PATCH] Highlight certificates that match the trust fabric but do not have KeyName elements, so that an appropriate KeyName can be added. --- build/check_embedded.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/check_embedded.pl b/build/check_embedded.pl index 13859bc6..08ba585d 100755 --- a/build/check_embedded.pl +++ b/build/check_embedded.pl @@ -242,6 +242,8 @@ sub comment { } elsif ($error eq 'unable to get local issuer certificate') { $error = ''; comment("unknown issuer: $issuerCN"); + } elsif ($clientOK) { + $error = "certificate matches trust fabric; add KeyName?"; } }