From 7584e8b211f2bdf085e0697f5cb15fcbed536adb Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Mon, 13 Sep 2004 13:19:10 +0000 Subject: [PATCH] Fix typo in previous commit. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105112 13f79535-47bb-0310-9956-ffa450edef68 --- server/core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/core.c b/server/core.c index ae8d0a4d9d7..e5cb1880a4c 100644 --- a/server/core.c +++ b/server/core.c @@ -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; -- 2.47.2