[web] master update

Richard Levitte levitte at openssl.org
Mon Jan 25 12:36:01 UTC 2021


The branch master has been updated
       via  ea1add5b56b63293c22ed6e374f13c9e8a56aa90 (commit)
      from  dac25f4cbc9703f3338ef39df97dc5e7f9dd186f (commit)


- Log -----------------------------------------------------------------
commit ea1add5b56b63293c22ed6e374f13c9e8a56aa90
Author: Dr. Matthias St. Pierre <matthias.st.pierre at ncp-e.com>
Date:   Tue Dec 8 16:31:10 2020 +0100

    bin/mk-notes: correct the anchor links to the CVE descriptions
    
    from `...#<year>-<num>` to `...#CVE-<year>-<num>`.
    
    Reviewed-by: Matt Caswell <matt at openssl.org>
    Reviewed-by: Tomas Mraz <tomas at openssl.org>
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    (Merged from https://github.com/openssl/web/pull/209)

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

Summary of changes:
 bin/mk-notes | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/mk-notes b/bin/mk-notes
index 75562ef..a268fbc 100755
--- a/bin/mk-notes
+++ b/bin/mk-notes
@@ -41,7 +41,7 @@ while ( <STDIN> ) {
 	    print "<ul>\n";
 	    $in_ul = 1;
 	}
-	s/CVE-(\d{4}-\d{4})/<a href=vulnerabilities.html#$1>CVE-$1<\/a>/g;
+	s/CVE-\d{4}-\d{4}/<a href=vulnerabilities.html#$&>$&<\/a>/g;
 	print;
     }
 }


More information about the openssl-commits mailing list