Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Tidier display of entity IDs.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Oct 21, 2014
1 parent 2bbf90d commit 9779aad
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions build/check_embedded.pl
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,13 @@ sub comment {
@args = split;
$entity = $args[1];
$keyname = $args[3];

#
# Tidy entity ID if it includes a UK ID as well.
#
if ($entity =~ /^\[(.+)\](.+)$/) {
$entity = $2 . ' (' . $1 . ')';
}

#
# Output header line.
Expand Down Expand Up @@ -439,6 +446,14 @@ sub comment {
#
close $fh;

#if ($issuer eq $subject) {
# # self-signed
#} elsif ($issuerCN eq 'TERENA SSL CA') {
# # this one we know about
#} else {
# warning("issuer is '$issuerCN'");
#}

#
# Add a warning for certain issuers.
#
Expand Down

0 comments on commit 9779aad

Please sign in to comment.