mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2026-01-29 05:51:07 +01:00
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.
This commit is contained in:
parent
a3e9a04435
commit
c267d24f57
@ -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
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user