diff --git a/CHANGES b/CHANGES index 522eda0317..c37d6f98bc 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,9 @@ -*- coding: utf-8 -*- Changes with Apache 2.5.0 + *) mod_ssl: Make the output filter more friendly with deferred write and + response pipelining. [Yann Ylavic, Joe Orton] + *) core/util_script: relax alphanumeric filter of environment variable names on Windows to allow '(' and ')' for passing PROGRAMFILES(X86) et.al. unadulterated in 64 bit versions of Windows. PR 46751. diff --git a/modules/http/http_request.c b/modules/http/http_request.c index cbf8840468..0143a2e73f 100644 --- a/modules/http/http_request.c +++ b/modules/http/http_request.c @@ -256,8 +256,8 @@ AP_DECLARE(void) ap_process_request_after_handler(request_rec *r) apr_bucket *b; conn_rec *c = r->connection; - /* Send an EOR bucket (alone!) through the output filter chain. - * When this bucket is destroyed, the request will be logged and + /* Send an EOR bucket through the output filter chain. When + * this bucket is destroyed, the request will be logged and * its pool will be freed */ bb = apr_brigade_create(c->pool, c->bucket_alloc);