X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=tools%2Fc_rehash.in;h=4497cbd9f178276df4131a710555c7ab1f0aff3f;hb=ec67e3b7e4aaed482ad89c2b2e47d5cfe12ec2d7;hp=c2e7d67f3bcab3bc0b6040d77d1fcad8f6583221;hpb=b7910992d83bffebbc68ac7c1406e2fbf91e2304;p=oweals%2Fopenssl.git 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/^.*=//;