From bb90f9fee1a3055f8a9cd63aad691b1bfae3e53e Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 27 May 2020 10:09:04 +0200 Subject: [PATCH] util/mkpod2html.pl: Fix unbalanced quotes Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/11969) --- util/mkpod2html.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/mkpod2html.pl b/util/mkpod2html.pl index 9e81d36653..2df4b22b41 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; -- 2.25.1