From a7281341aeb5ebd071d57af815c1288ce589eed6 Mon Sep 17 00:00:00 2001 From: Bastian Triller Date: Mon, 27 Oct 2025 08:38:17 +0100 Subject: [PATCH] feature: Remove class for unsupported TLS 1.0 --- libpromises/feature.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libpromises/feature.c b/libpromises/feature.c index 5b8e5aaeee..f1b911bfe9 100644 --- a/libpromises/feature.c +++ b/libpromises/feature.c @@ -17,8 +17,10 @@ static const char* features[] = { #ifdef HAVE_LIBCURL "curl", #endif +#ifdef HAVE_TLS_1_0 "tls_1_0", /* we require versions of OpenSSL that support * at least TLS 1.0 */ +#endif #ifdef HAVE_TLS_1_1 "tls_1_1", #endif