[openssl-commits] [web] master update
Mark J. Cox
mark at openssl.org
Tue Feb 6 09:01:34 UTC 2018
The branch master has been updated
via 93624a912c2c58b247062aed08492ef988df292e (commit)
via e18f270d1a141d407f43cc6eea82d860210180e7 (commit)
from 2cef09be2a43e95dcd9f35695716a797e12cce3b (commit)
- Log -----------------------------------------------------------------
commit 93624a912c2c58b247062aed08492ef988df292e
Merge: e18f270 2cef09b
Author: Mark J. Cox <mark at awe.com>
Date: Tue Feb 6 09:01:10 2018 +0000
Merge branch 'master' of git.openssl.org:openssl-web
commit e18f270d1a141d407f43cc6eea82d860210180e7
Author: Mark J. Cox <mark at awe.com>
Date: Tue Feb 6 09:00:32 2018 +0000
When an issue affects more than one release list the releases latest first
-----------------------------------------------------------------------
Summary of changes:
bin/mk-cvepage | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/mk-cvepage b/bin/mk-cvepage
index 4a6f942..8dbb864 100755
--- a/bin/mk-cvepage
+++ b/bin/mk-cvepage
@@ -115,7 +115,7 @@ for issue in sorted(issues, key=lambda x: (x.getAttribute('public'), x.getElemen
allissues += "<ul>"
also = []
- for affects in issue.getElementsByTagName('fixed'):
+ for affects in sorted(issue.getElementsByTagName('fixed'), key=lambda x: (x.getAttribute("base")), reverse=True):
if options.base:
if (affects.getAttribute("base") not in options.base):
also.append("OpenSSL <a href=\"vulnerabilities-%s.html#CVE-%s\">%s</a>" %( affects.getAttribute('base'), cve, affects.getAttribute('version')))
More information about the openssl-commits
mailing list