From 8a3b638d9799f19387c6c7ee5033495c537bc3e7 Mon Sep 17 00:00:00 2001 From: Ian Young Date: Mon, 8 Mar 2010 11:40:15 +0000 Subject: [PATCH] Start warning about authorities a year before expiry, not a month. --- build/check_authorities.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/check_authorities.pl b/build/check_authorities.pl index 04edb30b..c033cdb7 100755 --- a/build/check_authorities.pl +++ b/build/check_authorities.pl @@ -88,7 +88,7 @@ $days = (str2time($notAfter)-time())/86400.0; if ($days < 0) { print " *** EXPIRED ***\n"; - } elsif ($days < 30) { + } elsif ($days < 365) { $days = int($days); print " *** expires in $days days\n"; } elsif ($days < (365*2)) {