CLEANUP: sock: Wrap accept4_broken = 1 into additional parenthesis

This makes it clear to static analysis tools that this assignment is
intentional and not a mistyped comparison.
This commit is contained in:
Tim Duesterhus 2021-11-20 14:39:47 +01:00 committed by Willy Tarreau
parent d69d65a563
commit f897fc99bd

View File

@ -74,7 +74,7 @@ struct connection *sock_accept_conn(struct listener *l, int *status)
(((cfd = accept4(l->rx.fd, (struct sockaddr*)addr, &laddr,
SOCK_NONBLOCK | (master ? SOCK_CLOEXEC : 0))) == -1) &&
(errno == ENOSYS || errno == EINVAL || errno == EBADF) &&
(accept4_broken = 1)))
((accept4_broken = 1))))
#endif
{
laddr = sizeof(*conn->src);