summaryrefslogtreecommitdiff
path: root/tools/c_rehash.in
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-10-11 11:34:20 +0000
committerRichard Levitte <levitte@openssl.org>2002-10-11 11:34:20 +0000
commitb7910992d83bffebbc68ac7c1406e2fbf91e2304 (patch)
treecd61b9fd528046b96dac22df345242eaf9ea35c3 /tools/c_rehash.in
parentcf3b8b52f113d187040c60690f12d097e34bc202 (diff)
downloadopenssl-new-b7910992d83bffebbc68ac7c1406e2fbf91e2304.tar.gz
There may be more than one single quote to fix.
PR: 256
Diffstat (limited to 'tools/c_rehash.in')
-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 0c2d6b1f4c..c2e7d67f3b 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;