From caa4f47f615e801127013dd5689a2fa9314c536a Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 11 Oct 2002 20:28:23 +0000 Subject: [PATCH] Oh, there were *two* places where we needed to protect the file name... --- tools/c_rehash.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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/^.*=//; -- 2.34.1