Skip to content

Commit

Permalink
Add upcoming expiry date to embedded certificate report.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Dec 2, 2009
1 parent 50584c5 commit 851122f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/check_embedded.pl
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,10 @@ sub comment {
error("EXPIRED");
} elsif ($days < 30) {
$days = int($days);
error("expires in $days days");
error("expires in $days days ($notAfter)");
} elsif ($days < 60) {
$days = int($days);
warning("expires in $days days");
warning("expires in $days days ($notAfter)");
}
next;
}
Expand Down

0 comments on commit 851122f

Please sign in to comment.