[Cluster-devel] cluster/cman/lib libcman.c

pcaulfield at sourceware.org pcaulfield at sourceware.org
Wed Oct 25 12:23:47 UTC 2006


CVSROOT:	/cvs/cluster
Module name:	cluster
Changes by:	pcaulfield at sourceware.org	2006-10-25 12:23:46

Modified files:
	cman/lib       : libcman.c 

Log message:
	fix CMAN_DISPATCH_ALL.
	Patch from Mikhail A Zelikov which got inexplicably lost, sorry.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/cman/lib/libcman.c.diff?cvsroot=cluster&r1=1.29&r2=1.30

--- cluster/cman/lib/libcman.c	2006/10/16 15:52:15	1.29
+++ cluster/cman/lib/libcman.c	2006/10/25 12:23:46	1.30
@@ -569,7 +569,7 @@
 			break;
 
 	} while ( flags & CMAN_DISPATCH_ALL &&
-		  (len < 0 && errno == EAGAIN) );
+		  !(len < 0 && errno == EAGAIN) );
 
 	return len;
 }




More information about the Cluster-devel mailing list