summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-10-11 20:35:45 +0000
committerRichard Levitte <levitte@openssl.org>2002-10-11 20:35:45 +0000
commit449d39f41c99d5c4e226b9b319b9555e39788696 (patch)
tree363517f4e1d38b6e346ea9d82044225ec9a52470 /tools
parent84236041c176c8f4b35b6fbafc81f79efd060c09 (diff)
Merge string protection from main trunk
Diffstat (limited to 'tools')
-rw-r--r--tools/c_rehash.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/c_rehash.in b/tools/c_rehash.in
index c2e7d67f3b..4497cbd9f1 100644
--- a/tools/c_rehash.in
+++ b/tools/c_rehash.in
@@ -101,7 +101,7 @@ sub check_file {
sub link_hash_cert {
my $fname = $_[0];
$fname =~ s/'/'\\''/g;
- 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/^.*=//;
@@ -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/^.*=//;