From: Richard Levitte Date: Fri, 17 Aug 2001 04:35:58 +0000 (+0000) Subject: Make sure evil file name characters, like spaces or ampersands (!), X-Git-Tag: OpenSSL_0_9_6c~147^2~5 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bb766a0ad654dc671d1c8f53c2eab4f25ccf2f01;p=oweals%2Fopenssl.git Make sure evil file name characters, like spaces or ampersands (!), don't disturb the rehashing process. Spotted and suggested patch from Rudo Thomas --- diff --git a/tools/c_rehash.in b/tools/c_rehash.in index 26db8999d8..69da98ff2c 100644 --- a/tools/c_rehash.in +++ b/tools/c_rehash.in @@ -100,7 +100,7 @@ sub check_file { sub link_hash_cert { my $fname = $_[0]; - my ($hash, $fprint) = `$openssl x509 -hash -fingerprint -noout -in $fname`; + my ($hash, $fprint) = `$openssl x509 -hash -fingerprint -noout -in "$fname"`; chomp $hash; chomp $fprint; $fprint =~ s/^.*=//; @@ -130,7 +130,7 @@ sub link_hash_cert { sub link_hash_crl { my $fname = $_[0]; - my ($hash, $fprint) = `$openssl crl -hash -fingerprint -noout -in $fname`; + my ($hash, $fprint) = `$openssl crl -hash -fingerprint -noout -in "$fname"`; chomp $hash; chomp $fprint; $fprint =~ s/^.*=//;