summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2020-05-27 10:09:04 +0200
committerRichard Levitte <levitte@openssl.org>2020-05-28 14:00:49 +0200
commitbb90f9fee1a3055f8a9cd63aad691b1bfae3e53e (patch)
tree730c6cafaa46068b4dbc64a1562f1eeba35ba435 /util
parent3d518d3d813da40195ff9fe5f4567ab9f09ddcc9 (diff)
util/mkpod2html.pl: Fix unbalanced quotes
Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11969)
Diffstat (limited to 'util')
-rwxr-xr-xutil/mkpod2html.pl2
1 files changed, 1 insertions, 1 deletions
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;