mirror of
https://github.com/samba-team/samba.git
synced 2025-11-22 16:23:49 +03:00
r22181: Fix for EISCON in open_any_socket_out from William Jojo
for bug #3632. Jeremy.
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
057db32558
commit
7979a5a350
@@ -999,6 +999,9 @@ BOOL open_any_socket_out(struct sockaddr_in *addrs, int num_addrs,
|
||||
}
|
||||
|
||||
if (errno == EINPROGRESS || errno == EALREADY ||
|
||||
#ifdef EISCONN
|
||||
errno == EISCONN ||
|
||||
#endif
|
||||
errno == EAGAIN || errno == EINTR) {
|
||||
/* These are the error messages that something is
|
||||
progressing. */
|
||||
|
||||
Reference in New Issue
Block a user