From: Richard Levitte Date: Wed, 27 May 2020 08:09:04 +0000 (+0200) Subject: util/mkpod2html.pl: Fix unbalanced quotes X-Git-Tag: openssl-3.0.0-alpha3~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb90f9fee1a3055f8a9cd63aad691b1bfae3e53e;p=thirdparty%2Fopenssl.git util/mkpod2html.pl: Fix unbalanced quotes Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/11969) --- diff --git a/util/mkpod2html.pl b/util/mkpod2html.pl index 9e81d36653d..2df4b22b412 100755 --- a/util/mkpod2html.pl +++ b/util/mkpod2html.pl @@ -45,7 +45,7 @@ close F; unlink $opt_o; $contents =~ - s|href="http://man\.he\.net/(man\d/[^"]+)(?:\.html)?"|href="../$1.html|g; + s|href="http://man\.he\.net/(man\d/[^"]+)(?:\.html)?"|href="../$1.html"|g; open F, ">$opt_o" or die "Can't write $opt_o, $!"; print F $contents;