From mboxrd@z Thu Jan 1 00:00:00 1970 From: pcaulfield@sourceware.org Date: 31 Aug 2006 10:11:53 -0000 Subject: [Cluster-devel] cluster/cman/lib libcman.c Message-ID: <20060831101153.10986.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 Branch: RHEL4 Changes by: pcaulfield at sourceware.org 2006-08-31 10:11:53 Modified files: cman/lib : libcman.c Log message: make cman_dispatch(, CMAN_DISPATCH_ALL) do what it's supposed to do. Thanks to Mikhail A Zelikov for spooting this. Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/cman/lib/libcman.c.diff?cvsroot=cluster&only_with_tag=RHEL4&r1=1.3.2.6&r2=1.3.2.7 --- cluster/cman/lib/libcman.c 2006/04/26 08:54:33 1.3.2.6 +++ cluster/cman/lib/libcman.c 2006/08/31 10:11:53 1.3.2.7 @@ -201,7 +201,7 @@ } while ( flags & CMAN_DISPATCH_ALL && - (len < 0 && errno == EAGAIN) ); + !(len < 0 && errno == EAGAIN) ); return len; }