1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-29 16:23:52 +03:00

r20148: Forgot to merge. Ensure open_any_socket_out()

is safe from signals.
Jeremy.
This commit is contained in:
Jeremy Allison
2006-12-13 05:54:39 +00:00
committed by Gerald (Jerry) Carter
parent 5d364bc5cc
commit c264a0aa4a

View File

@@ -974,7 +974,7 @@ BOOL open_any_socket_out(struct sockaddr_in *addrs, int num_addrs,
} }
if (errno == EINPROGRESS || errno == EALREADY || if (errno == EINPROGRESS || errno == EALREADY ||
errno == EAGAIN) { errno == EAGAIN || errno == EINTR) {
/* These are the error messages that something is /* These are the error messages that something is
progressing. */ progressing. */
good_connect = True; good_connect = True;