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:
parent
6b232e8c1f
commit
050534827f
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user