From c6f647dfd9dff2e9681f084b01cc7267b779f8fd Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 27 Jun 2001 10:44:14 +0000 Subject: handle EISCONN in socketpair_tcp this should get the auto-tests working on IRIX (This used to be commit 87f90d48d857828a6ed12bdc58d0d881be45dfce) --- source3/lib/util_sock.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3/lib') diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c index 7f8b83ec7d..d7bef0697e 100644 --- a/source3/lib/util_sock.c +++ b/source3/lib/util_sock.c @@ -1185,7 +1185,8 @@ static int socketpair_tcp(int fd[2]) close(listener); if (connect_done == 0) { - if (connect(fd[1],(struct sockaddr *)&sock,sizeof(sock)) != 0) goto failed; + if (connect(fd[1],(struct sockaddr *)&sock,sizeof(sock)) != 0 + && errno != EISCONN) goto failed; } set_blocking(fd[1], 1); -- cgit