diff options
author | Rob Austein <sra@hactrn.net> | 2006-08-22 22:30:12 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2006-08-22 22:30:12 +0000 |
commit | 31b9c60f8a0012116aab0c6881656fc9333b927d (patch) | |
tree | d3559956bed627ae8a917b78ce479b06d2afdb38 | |
parent | 383bb97e0b58cbfcee3c2189d588eb86f524e465 (diff) |
# on 2006/08/12 06:04:42, sra did:
crl->cdp
svn path=/scripts/uri.pl; revision=210
-rw-r--r-- | scripts/uri.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/uri.pl b/scripts/uri.pl index 899fa706..4e391ded 100644 --- a/scripts/uri.pl +++ b/scripts/uri.pl @@ -7,7 +7,7 @@ use strict; while (@ARGV) { my $file = shift(@ARGV); - my ($aia, $sia, $crl, $a, $s, $c) = qw(- - -); + my ($aia, $sia, $cdp, $a, $s, $c) = qw(- - -); next unless ($file =~ /\.cer$/); open(F, "-|", qw(openssl x509 -noout -inform DER -text -in), $file) or die("Couldn't run openssl x509 on $file: $!\n"); @@ -24,9 +24,9 @@ while (@ARGV) { if ($a && $. == $a); $sia = $_ if ($s && $. == $s); - $crl = $_ + $cdp = $_ if ($c && $. == $c); } close(F); - print("$aia $crl $file\n"); + print("$aia $cdp $file\n"); } |