Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 58620 invoked from network); 13 Sep 2004 13:19:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 13 Sep 2004 13:19:14 -0000 Received: (qmail 76265 invoked by uid 500); 13 Sep 2004 13:19:13 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 76229 invoked by uid 500); 13 Sep 2004 13:19:12 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 76216 invoked by uid 500); 13 Sep 2004 13:19:12 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Received: (qmail 76205 invoked by uid 99); 13 Sep 2004 13:19:12 -0000 X-ASF-Spam-Status: No, hits=-2.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Mon, 13 Sep 2004 06:19:11 -0700 Received: (qmail 58573 invoked by uid 1582); 13 Sep 2004 13:19:10 -0000 Date: 13 Sep 2004 13:19:10 -0000 Message-ID: <20040913131910.58572.qmail@minotaur.apache.org> From: jorton@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/server core.c X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N jorton 2004/09/13 06:19:10 Modified: server core.c Log: Fix typo in previous commit. Revision Changes Path 1.285 +2 -2 httpd-2.0/server/core.c Index: core.c =================================================================== RCS file: /home/cvs/httpd-2.0/server/core.c,v retrieving revision 1.284 retrieving revision 1.285 diff -d -w -u -r1.284 -r1.285 --- core.c 13 Sep 2004 13:16:32 -0000 1.284 +++ core.c 13 Sep 2004 13:19:10 -0000 1.285 @@ -3683,9 +3683,9 @@ bb = apr_brigade_create(r->pool, c->bucket_alloc); /* For platforms where the size of the file may be larger than - * that which can be stored in a single bucket (whether the + * that which can be stored in a single bucket (where the * length field is an apr_size_t), split it into several - * buckets */ + * buckets: */ if (sizeof(apr_off_t) > sizeof(apr_size_t) && r->finfo.size > AP_MAX_SENDFILE) { apr_off_t fsize = r->finfo.size;