[web] master update
Matt Caswell
matt at openssl.org
Thu Apr 8 09:17:39 UTC 2021
The branch master has been updated
via b36cb385405c057a5cab931fc59b1a771ccc1e44 (commit)
from dd5f38e589cf996a273ab78b9ef741e7d78f2eb7 (commit)
- Log -----------------------------------------------------------------
commit b36cb385405c057a5cab931fc59b1a771ccc1e44
Author: Dr. Matthias St. Pierre <matthias.st.pierre at ncp-e.com>
Date: Tue Feb 16 20:13:29 2021 +0100
bin/mk-notes: adjust regular expression for CVE IDs
According to [1], the CVE ID can now have more than four digits,
which actually happened for the CVEs fixed by 1.1.1j.
[1] https://cve.mitre.org/about/faqs.html#cve_id_syntax_change
Reviewed-by: Richard Levitte <levitte at openssl.org>
Reviewed-by: Matt Caswell <matt at openssl.org>
(Merged from https://github.com/openssl/web/pull/219)
-----------------------------------------------------------------------
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 a268fbc..352cb8e 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#$&>$&<\/a>/g;
+ s/CVE-\d{4}-\d{4,}/<a href=vulnerabilities.html#$&>$&<\/a>/g;
print;
}
}
More information about the openssl-commits
mailing list