util/mkpod2html.pl: Fix unbalanced quotes

Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/11969)
This commit is contained in:
Richard Levitte 2020-05-27 10:09:04 +02:00
parent 3d518d3d81
commit bb90f9fee1

View File

@ -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;