From mboxrd@z Thu Jan 1 00:00:00 1970 From: pcaulfield@sourceware.org Date: 1 Dec 2006 14:23:39 -0000 Subject: [Cluster-devel] cluster/cman/lib libcman.c Message-ID: <20061201142339.24801.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: RHEL50 Changes by: pcaulfield at sourceware.org 2006-12-01 14:23:39 Modified files: cman/lib : libcman.c Log message: That 'if' really should have been a 'while'. If anyone can remember which bug this was supposed to fix, please pipe up :) Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/cman/lib/libcman.c.diff?cvsroot=cluster&only_with_tag=RHEL50&r1=1.30&r2=1.30.4.1 --- cluster/cman/lib/libcman.c 2006/10/25 12:23:46 1.30 +++ cluster/cman/lib/libcman.c 2006/12/01 14:23:39 1.30.4.1 @@ -233,7 +233,7 @@ return len; byte_cnt += len; - if (len >= iovptr->iov_len) + while (len >= iovptr->iov_len) { len -= iovptr->iov_len; iovptr++;