From: Richard Levitte Date: Fri, 11 Oct 2002 20:28:23 +0000 (+0000) Subject: Oh, there were *two* places where we needed to protect the file X-Git-Tag: OpenSSL_0_9_7-beta4~109^2~29 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=caa4f47f615e801127013dd5689a2fa9314c536a Oh, there were *two* places where we needed to protect the file name... --- diff --git a/tools/c_rehash.in b/tools/c_rehash.in index c2e7d67f3b..c480dff3ad 100644 --- a/tools/c_rehash.in +++ b/tools/c_rehash.in @@ -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/^.*=//;