mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-03 20:39:41 -05: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Reference in a new issue