[openssl-commits] [web] master update

Mark J. Cox mark at openssl.org
Mon Jan 29 15:19:21 UTC 2018


The branch master has been updated
       via  0be639f38ad327963d1ae0e49abe1c90e0872b5c (commit)
      from  b1e610b11def5706bf71a06c9f403aca0a7333fa (commit)


- Log -----------------------------------------------------------------
commit 0be639f38ad327963d1ae0e49abe1c90e0872b5c
Author: Mark J. Cox <mark at awe.com>
Date:   Mon Jan 29 15:18:59 2018 +0000

    Match lower case severity names in security policy

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

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 c094170..57bc798 100755
--- a/bin/mk-cvepage
+++ b/bin/mk-cvepage
@@ -84,7 +84,7 @@ for issue in sorted(issues, key=lambda x: (x.getAttribute('public'), x.getElemen
     for adv in issue.getElementsByTagName('advisory'):
         allissues += "<a href=\"%s\">(OpenSSL advisory)</a> " %(adv.getAttribute("url"))
     for sev in issue.getElementsByTagName('impact'):
-        allissues += "<a href=\"/policies/secpolicy.html#%s\">[%s severity]</a> " %(sev.getAttribute('severity'),sev.getAttribute('severity'))
+        allissues += "<a href=\"/policies/secpolicy.html#%s\">[%s severity]</a> " %(sev.getAttribute('severity').lower(),sev.getAttribute('severity'))
     t = datetime.datetime(int(date[:4]), int(date[4:6]), int(date[6:8]), 0, 0)
     allissues += t.strftime("%d %B %Y: ")
 


More information about the openssl-commits mailing list