diff options
author | Richard Levitte <levitte@openssl.org> | 2002-10-11 20:28:23 +0000 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2002-10-11 20:28:23 +0000 |
commit | caa4f47f615e801127013dd5689a2fa9314c536a (patch) | |
tree | 4fad89ce2467ab0f82c19599c98fc44d916662de /tools | |
parent | 36757b4438acba4c46046970785c1e9a8f16d798 (diff) | |
download | openssl-new-caa4f47f615e801127013dd5689a2fa9314c536a.tar.gz |
Oh, there were *two* places where we needed to protect the file
name...
Diffstat (limited to 'tools')
-rw-r--r-- | tools/c_rehash.in | 3 |
1 files changed, 2 insertions, 1 deletions
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/^.*=//; |