From 99d301d565b2bfc03792e33cbecef0b19ef5a4f0 Mon Sep 17 00:00:00 2001 From: Adam Bishop Date: Mon, 26 Sep 2016 15:52:02 +0100 Subject: [PATCH] Check the CVE ID, not the name --- src/main/tls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/tls.c b/src/main/tls.c index a1d95aa..d3c3810 100644 --- a/src/main/tls.c +++ b/src/main/tls.c @@ -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)); -- 2.1.4