diff options
author | Rob Austein <sra@hactrn.net> | 2006-08-22 22:29:00 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2006-08-22 22:29:00 +0000 |
commit | 8382ee8f0f40bff30b7c2a74f8ee77564e81fe6d (patch) | |
tree | d65a50c104f73ce3faa4e48ec2c22b0a51da0fc7 /scripts | |
parent | d9f750ac29af074e92ebd24ac0d56680381d30b2 (diff) |
# on 2006/08/10 07:05:08, sra did:
Limit output to fields I might want to use building cert chains.
I guess the SIA would qualify under that description but it's not
particularly relevant to what I'm doing at the moment.
svn path=/scripts/uri.pl; revision=199
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/uri.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/uri.pl b/scripts/uri.pl index d4bd0c3c..f107085f 100644 --- a/scripts/uri.pl +++ b/scripts/uri.pl @@ -11,7 +11,7 @@ while (@ARGV) { or die("Couldn't run openssl x509 on $file: $!\n"); while (<F>) { chomp; - s{^.+URI:}{}; + s{^.+URI:rsync://}{}; $a = $. + 1 if (/Authority Information Access:/); $s = $. + 1 @@ -26,5 +26,5 @@ while (@ARGV) { if ($c && $. == $c); } close(F); - print("$aia $crl $sia $file\n"); + print("$aia $crl $file\n"); } |