From mboxrd@z Thu Jan 1 00:00:00 1970 From: pcaulfield@sourceware.org Date: 23 Feb 2007 09:51:24 -0000 Subject: [Cluster-devel] cluster/cman/lib libcman.c Message-ID: <20070223095124.12484.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: STABLE Changes by: pcaulfield at sourceware.org 2007-02-23 09:51:23 Modified files: cman/lib : libcman.c Log message: Copy RHEL4 CMAN_DISPATCH_ALL fix over Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/cman/lib/libcman.c.diff?cvsroot=cluster&only_with_tag=STABLE&r1=1.3.6.1.2.6&r2=1.3.6.1.2.7 --- cluster/cman/lib/libcman.c 2007/02/07 15:25:04 1.3.6.1.2.6 +++ cluster/cman/lib/libcman.c 2007/02/23 09:51:23 1.3.6.1.2.7 @@ -201,7 +201,7 @@ } while ( flags & CMAN_DISPATCH_ALL && - (len < 0 && errno == EAGAIN) ); + !(len < 0 && errno == EAGAIN) ); return len; }