aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-10-11 20:35:37 +0000
committerRichard Levitte <levitte@openssl.org>2002-10-11 20:35:37 +0000
commit0bde80f9325e9ab0819bd1dc249c66792c5dade6 (patch)
tree69c5a8cb9d701f5ce24885a078a16d93fdad0552
parentc30ab1639619e0ae41864f29f9aeea38aea3c02d (diff)
downloadopenssl-0bde80f9325e9ab0819bd1dc249c66792c5dade6.tar.gz
Merge string protection from main trunk
-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 1a17605728..132c0e4ceb 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/^.*=//;