summaryrefslogtreecommitdiffstats
path: root/tools/c_rehash.in
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-10-11 11:07:28 +0000
committerRichard Levitte <levitte@openssl.org>2002-10-11 11:07:28 +0000
commit42b06fbaca428759078d06e137b537a2f0c7501f (patch)
tree08a1f6849fb6f253e731776fb8fc577a04947ece /tools/c_rehash.in
parent2245cd87d4330dfa1e2e7210c6644a8c524f3ca1 (diff)
Make sure $fname will not give us any surprises with any funny characters.
PR: 256
Diffstat (limited to 'tools/c_rehash.in')
-rw-r--r--tools/c_rehash.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/c_rehash.in b/tools/c_rehash.in
index 5b053406c2..0c2d6b1f4c 100644
--- a/tools/c_rehash.in
+++ b/tools/c_rehash.in
@@ -100,7 +100,8 @@ sub check_file {
sub link_hash_cert {
my $fname = $_[0];
- my ($hash, $fprint) = `$openssl x509 -hash -fingerprint -noout -in "$fname"`;
+ $fname =~ s/'/'\\''/;
+ my ($hash, $fprint) = `$openssl x509 -hash -fingerprint -noout -in '$fname'`;
chomp $hash;
chomp $fprint;
$fprint =~ s/^.*=//;