From: Richard Levitte Date: Fri, 11 Nov 2016 09:02:58 +0000 (+0100) Subject: Fix typo in util/process_docs.pl X-Git-Tag: OpenSSL_1_1_1-pre1~3089 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c2e1ec49326bece462bd3a638b2039d0c84a4751;p=oweals%2Fopenssl.git Fix typo in util/process_docs.pl The links weren't properly terminated with a " Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/1901) --- diff --git a/util/process_docs.pl b/util/process_docs.pl index e1d479d91a..edb7ca6e8d 100644 --- a/util/process_docs.pl +++ b/util/process_docs.pl @@ -102,7 +102,7 @@ foreach my $section (sort @{$options{section}}) { if $options{debug}; unless ($options{"dry-run"}) { @output = `$generate`; - map { s|href="http://man\.he\.net/(man\d/[^"]+)(?:\.html)?"|href="../$1.html|g; } @output + map { s|href="http://man\.he\.net/(man\d/[^"]+)(?:\.html)?"|href="../$1.html"|g; } @output if $options{type} eq "html"; } print STDERR "DEBUG: Done processing\n" if $options{debug};