Commit caa4f47f authored by Richard Levitte's avatar Richard Levitte
Browse files

Oh, there were *two* places where we needed to protect the file

name...
parent 36757b44
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -131,7 +131,8 @@ sub link_hash_cert {

sub link_hash_crl {
		my $fname = $_[0];
		my ($hash, $fprint) = `$openssl crl -hash -fingerprint -noout -in "$fname"`;
		$fname =~ s/'/'\\''/g;
		my ($hash, $fprint) = `$openssl crl -hash -fingerprint -noout -in '$fname'`;
		chomp $hash;
		chomp $fprint;
		$fprint =~ s/^.*=//;