From: Richard Levitte Date: Fri, 11 Oct 2002 11:34:24 +0000 (+0000) Subject: There may be more than one single quote to fix. X-Git-Tag: OpenSSL_0_9_6h~75 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ad1b6d0df360310dd4ed7fa86b24557285131711;p=oweals%2Fopenssl.git There may be more than one single quote to fix. PR: 256 --- 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;