From e01926f10977e4bb6a6222da1c091966171bba5d Mon Sep 17 00:00:00 2001 From: Ian Young Date: Thu, 28 Feb 2013 10:09:17 +0000 Subject: [PATCH] Do the full report only if more than one *distinct* certificate appears. This makes results more consistent when checking the set of certificates for one entity. --- build/check_embedded.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/check_embedded.pl b/build/check_embedded.pl index 11401109..34046269 100755 --- a/build/check_embedded.pl +++ b/build/check_embedded.pl @@ -533,7 +533,7 @@ sub comment { } } -if ($total_certs > 1) { +if ($distinct_certs > 1) { print "Total certificates: $total_certs\n"; if ($distinct_certs != $total_certs) { print "Distinct certificates: $distinct_certs\n";