Skip to content

Commit

Permalink
Merge pull request #1758 from TheMysteriousX/v3.0.x
Browse files Browse the repository at this point in the history
Check the CVE ID, not the name
  • Loading branch information
arr2036 committed Sep 26, 2016
2 parents b364b57 + 99d301d commit bb8802a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/tls.c
Original file line number Diff line number Diff line change
Expand Up @@ -2483,7 +2483,7 @@ int tls_global_version_check(char const *acknowledged)
/*
* If the CVE is acknowledged, allow it.
*/
if (strcmp(acknowledged, defect->name) == 0) return 0;
if (strcmp(acknowledged, defect->id) == 0) return 0;

ERROR("Refusing to start with libssl version %s (in range %s)",
ssl_version(), ssl_version_range(defect->low, defect->high));
Expand Down

0 comments on commit bb8802a

Please sign in to comment.