Skip to content

Commit

Permalink
Add back the premium support link as github links that don't work are
Browse files Browse the repository at this point in the history
not useful (they should eventually be changed in the json files)
  • Loading branch information
iamamoose committed Dec 5, 2022
1 parent 4fdfa23 commit 43084e0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bin/cvejsontohtml.py
Expand Up @@ -156,7 +156,10 @@ def getbasefor(fixedin):
continue
allissues += "<li>Fixed in OpenSSL %s " %(fixedin)
if (git != ""):
allissues += "<a href=\"%s\">(git commit)</a> " %(git)
if (fixedin.startswith("1.0.2") and fixedin[5]>='w'): # 1.0.2w and above hack
allissues += "<a href=\"/support/contracts.html?giturl=%s\">(premium support)</a> " %(git)
else:
allissues += "<a href=\"%s\">(git commit)</a> " %(git)
allissues += "(Affected since "+earliest+")"
allissues += "</li>"
if also:
Expand Down

0 comments on commit 43084e0

Please sign in to comment.