From c267d24f57a6fdd03ea8e4854ea75ddd8c84471c Mon Sep 17 00:00:00 2001 From: Christopher Faulet Date: Fri, 23 Jan 2026 11:32:20 +0100 Subject: [PATCH] BUG/MINOR: proto_tcp: Properly report support for HAVE_TCP_MD5SIG feature Condition to report the support for HAVE_TCP_MD5SIG feature was inverted. It is only an issue for the reg-test related to this feature. This patch must be backported to 3.3. --- src/proto_tcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto_tcp.c b/src/proto_tcp.c index 1182922ce..727845263 100644 --- a/src/proto_tcp.c +++ b/src/proto_tcp.c @@ -1028,7 +1028,7 @@ static int tcp_get_info(struct connection *conn, long long int *info, int info_n static void __proto_tcp_init(void) { -#if defined(__linux__) && !defined(TCP_MD5SIG) +#if defined(__linux__) && defined(TCP_MD5SIG) hap_register_feature("HAVE_TCP_MD5SIG"); #endif } -- 2.47.3