From: Richard Levitte Date: Fri, 11 Oct 2002 20:31:27 +0000 (+0000) Subject: And if the path has a space, we definitely need to protect $openssl. X-Git-Tag: OpenSSL_0_9_7-beta4~109^2~28 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=56b5f687e4f22fb19b885212f960f01deb085ccc;p=oweals%2Fopenssl.git And if the path has a space, we definitely need to protect $openssl. --- diff --git a/tools/c_rehash.in b/tools/c_rehash.in index c480dff3ad..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/^.*=//; @@ -132,7 +132,7 @@ sub link_hash_cert { sub link_hash_crl { my $fname = $_[0]; $fname =~ s/'/'\\''/g; - 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/^.*=//;