diff options
author | Richard Levitte <levitte@openssl.org> | 2001-08-17 06:35:58 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2001-08-17 06:35:58 +0200 |
commit | bb766a0ad654dc671d1c8f53c2eab4f25ccf2f01 (patch) | |
tree | 7c05fc29defbb98df2f7a2f7547b4b449ea26ee9 /tools | |
parent | Make -passin -passout etc work again. (diff) | |
download | openssl-bb766a0ad654dc671d1c8f53c2eab4f25ccf2f01.tar.xz openssl-bb766a0ad654dc671d1c8f53c2eab4f25ccf2f01.zip |
Make sure evil file name characters, like spaces or ampersands (!),
don't disturb the rehashing process.
Spotted and suggested patch from Rudo Thomas <rudo@internet.sk>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/c_rehash.in | 4 |
1 files changed, 2 insertions, 2 deletions
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/^.*=//; |