]> granicus.if.org Git - apache/commitdiff
Fix typo in previous commit.
authorJoe Orton <jorton@apache.org>
Mon, 13 Sep 2004 13:19:10 +0000 (13:19 +0000)
committerJoe Orton <jorton@apache.org>
Mon, 13 Sep 2004 13:19:10 +0000 (13:19 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105112 13f79535-47bb-0310-9956-ffa450edef68

server/core.c

index ae8d0a4d9d78bf11c59378188400ba7f12538310..e5cb1880a4cdca148f7cf9d2efafd8e057327453 100644 (file)
@@ -3683,9 +3683,9 @@ static int default_handler(request_rec *r)
         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;