aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-10-11 11:34:24 +0000
committerRichard Levitte <levitte@openssl.org>2002-10-11 11:34:24 +0000
commitad1b6d0df360310dd4ed7fa86b24557285131711 (patch)
treecaf8c2fe8a8598f01b084a0bae85e0a6fe37236f
parent6a0168e8427e3e0e789e8c527ed1606c364884a1 (diff)
downloadopenssl-ad1b6d0df360310dd4ed7fa86b24557285131711.tar.gz
There may be more than one single quote to fix.
PR: 256
-rw-r--r--tools/c_rehash.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/c_rehash.in b/tools/c_rehash.in
index 223066e9d9..1a17605728 100644
--- a/tools/c_rehash.in
+++ b/tools/c_rehash.in
@@ -100,7 +100,7 @@ sub check_file {
sub link_hash_cert {
my $fname = $_[0];
- $fname =~ s/'/'\\''/;
+ $fname =~ s/'/'\\''/g;
my ($hash, $fprint) = `$openssl x509 -hash -fingerprint -noout -in '$fname'`;
chomp $hash;
chomp $fprint;