svn commit: samba r20148 - in branches/SAMBA_3_0/source/lib: .

jra at samba.org jra at samba.org
Wed Dec 13 05:54:40 GMT 2006


Author: jra
Date: 2006-12-13 05:54:39 +0000 (Wed, 13 Dec 2006)
New Revision: 20148

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=20148

Log:
Forgot to merge. Ensure open_any_socket_out()
is safe from signals.
Jeremy.

Modified:
   branches/SAMBA_3_0/source/lib/util_sock.c


Changeset:
Modified: branches/SAMBA_3_0/source/lib/util_sock.c
===================================================================
--- branches/SAMBA_3_0/source/lib/util_sock.c	2006-12-13 03:20:57 UTC (rev 20147)
+++ branches/SAMBA_3_0/source/lib/util_sock.c	2006-12-13 05:54:39 UTC (rev 20148)
@@ -974,7 +974,7 @@
 		}
 
 		if (errno == EINPROGRESS || errno == EALREADY ||
-		    errno == EAGAIN) {
+		    errno == EAGAIN || errno == EINTR) {
 			/* These are the error messages that something is
 			   progressing. */
 			good_connect = True;



More information about the samba-cvs mailing list