From: Andrew Tridgell Date: Wed, 27 Jun 2001 10:44:14 +0000 (+0000) Subject: handle EISCONN in socketpair_tcp X-Git-Tag: samba-2.2.5pre1~1910^2~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=87f90d48d857828a6ed12bdc58d0d881be45dfce;p=thirdparty%2Fsamba.git handle EISCONN in socketpair_tcp this should get the auto-tests working on IRIX --- diff --git a/source/lib/util_sock.c b/source/lib/util_sock.c index 7f8b83ec7d3..d7bef0697e5 100644 --- a/source/lib/util_sock.c +++ b/source/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);