1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

r20148: Forgot to merge. Ensure open_any_socket_out()

is safe from signals.
Jeremy.
(This used to be commit c264a0aa4a)
This commit is contained in:
Jeremy Allison 2006-12-13 05:54:39 +00:00 committed by Gerald (Jerry) Carter
parent 6b232e8c1f
commit 050534827f

View File

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