aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-10-11 11:07:32 +0000
committerRichard Levitte <levitte@openssl.org>2002-10-11 11:07:32 +0000
commit6a0168e8427e3e0e789e8c527ed1606c364884a1 (patch)
tree1a2516ea48f4129c1dcb6195516de847d7753741
parentcd9a79eae1c07728e6139627d3e61026208e94f2 (diff)
downloadopenssl-6a0168e8427e3e0e789e8c527ed1606c364884a1.tar.gz
Make sure $fname will not give us any surprises with any funny characters.
PR: 256
-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 26db8999d8..223066e9d9 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/^.*=//;