From mboxrd@z Thu Jan 1 00:00:00 1970 From: pcaulfield@sourceware.org Date: 25 Oct 2006 12:23:47 -0000 Subject: [Cluster-devel] cluster/cman/lib libcman.c Message-ID: <20061025122347.709.qmail@sourceware.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit 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; }