Merge string protection from main trunk
authorRichard Levitte <levitte@openssl.org>
Fri, 11 Oct 2002 20:35:37 +0000 (20:35 +0000)
committerRichard Levitte <levitte@openssl.org>
Fri, 11 Oct 2002 20:35:37 +0000 (20:35 +0000)
tools/c_rehash.in

index 1a17605728b7488f91093d011786bd437b97b9da..132c0e4cebb50a73474bb3f2cec3c5ffd5faf968 100644 (file)
@@ -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/^.*=//;