From 851122fd22529318f5ba1d4ac304a262f17e4dfb Mon Sep 17 00:00:00 2001 From: Ian Young Date: Wed, 2 Dec 2009 13:38:33 +0000 Subject: [PATCH] Add upcoming expiry date to embedded certificate report. --- build/check_embedded.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/check_embedded.pl b/build/check_embedded.pl index a401e28e..84ace9b8 100755 --- a/build/check_embedded.pl +++ b/build/check_embedded.pl @@ -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; }