mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-04-01 22:48:25 +00:00
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:
parent
d69d65a563
commit
f897fc99bd
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user