Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 59411 invoked from network); 27 Feb 2008 11:18:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 27 Feb 2008 11:18:33 -0000 Received: (qmail 50895 invoked by uid 500); 27 Feb 2008 11:18:28 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 50871 invoked by uid 500); 27 Feb 2008 11:18:28 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 50860 invoked by uid 99); 27 Feb 2008 11:18:28 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Feb 2008 03:18:28 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Feb 2008 11:17:50 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3E55F1A9832; Wed, 27 Feb 2008 03:18:10 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r631558 - /apr/apr-util/trunk/buckets/apr_brigade.c Date: Wed, 27 Feb 2008 11:18:09 -0000 To: commits@apr.apache.org From: rpluem@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080227111810.3E55F1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rpluem Date: Wed Feb 27 03:18:03 2008 New Revision: 631558 URL: http://svn.apache.org/viewvc?rev=631558&view=rev Log: * Fix comment. No functional change. Modified: apr/apr-util/trunk/buckets/apr_brigade.c Modified: apr/apr-util/trunk/buckets/apr_brigade.c URL: http://svn.apache.org/viewvc/apr/apr-util/trunk/buckets/apr_brigade.c?rev=631558&r1=631557&r2=631558&view=diff ============================================================================== --- apr/apr-util/trunk/buckets/apr_brigade.c (original) +++ apr/apr-util/trunk/buckets/apr_brigade.c Wed Feb 27 03:18:03 2008 @@ -138,8 +138,8 @@ else if ((point64 < (apr_uint64_t)e->length) || (e->length == (apr_size_t)(-1))) { /* We already consumed buckets where point64 is beyond - * our interest ( point64 > MAX_APR_SIZE_T ), above. - * Here point falls between 0 and MAX_APR_SIZE_T + * our interest ( point64 > APR_SIZE_MAX ), above. + * Here point falls between 0 and APR_SIZE_MAX * and is within this bucket, or this bucket's len * is undefined, so now we are ready to split it. * First try to split the bucket natively... */