[openssl] master update

Richard Levitte levitte at openssl.org
Thu May 28 12:05:54 UTC 2020


The branch master has been updated
       via  bb90f9fee1a3055f8a9cd63aad691b1bfae3e53e (commit)
      from  3d518d3d813da40195ff9fe5f4567ab9f09ddcc9 (commit)


- Log -----------------------------------------------------------------
commit bb90f9fee1a3055f8a9cd63aad691b1bfae3e53e
Author: Richard Levitte <levitte at openssl.org>
Date:   Wed May 27 10:09:04 2020 +0200

    util/mkpod2html.pl: Fix unbalanced quotes
    
    Reviewed-by: Matt Caswell <matt at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/11969)

-----------------------------------------------------------------------

Summary of changes:
 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;


More information about the openssl-commits mailing list