summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/c_rehash.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/c_rehash.in b/tools/c_rehash.in
index c2e7d67f3b..c480dff3ad 100644
--- a/tools/c_rehash.in
+++ b/tools/c_rehash.in
@@ -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/^.*=//;