Skip to content

Commit

Permalink
Start warning about authorities a year before expiry, not a month.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Mar 8, 2010
1 parent 88fa954 commit 8a3b638
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/check_authorities.pl
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down

0 comments on commit 8a3b638

Please sign in to comment.