mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-04-04 23:29:42 +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,
|
(((cfd = accept4(l->rx.fd, (struct sockaddr*)addr, &laddr,
|
||||||
SOCK_NONBLOCK | (master ? SOCK_CLOEXEC : 0))) == -1) &&
|
SOCK_NONBLOCK | (master ? SOCK_CLOEXEC : 0))) == -1) &&
|
||||||
(errno == ENOSYS || errno == EINVAL || errno == EBADF) &&
|
(errno == ENOSYS || errno == EINVAL || errno == EBADF) &&
|
||||||
(accept4_broken = 1)))
|
((accept4_broken = 1))))
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
laddr = sizeof(*conn->src);
|
laddr = sizeof(*conn->src);
|
||||||
|
Loading…
Reference in New Issue
Block a user