1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-07 04:02:58 +03:00

mod_ssl: follow up to r1705194, r1705823, r1705826 and r1705828.

Add CHANGES entry, and restore ap_process_request_after_handler()'s comment
as prior to r1705194 (the change makes no sense now).


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1705833 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yann Ylavic
2015-09-29 10:31:58 +00:00
parent d110d628a5
commit 6cb5958ce8
2 changed files with 5 additions and 2 deletions

View File

@@ -1,6 +1,9 @@
-*- coding: utf-8 -*- -*- coding: utf-8 -*-
Changes with Apache 2.5.0 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 *) core/util_script: relax alphanumeric filter of environment variable names
on Windows to allow '(' and ')' for passing PROGRAMFILES(X86) et.al. on Windows to allow '(' and ')' for passing PROGRAMFILES(X86) et.al.
unadulterated in 64 bit versions of Windows. PR 46751. unadulterated in 64 bit versions of Windows. PR 46751.

View File

@@ -256,8 +256,8 @@ AP_DECLARE(void) ap_process_request_after_handler(request_rec *r)
apr_bucket *b; apr_bucket *b;
conn_rec *c = r->connection; conn_rec *c = r->connection;
/* Send an EOR bucket (alone!) through the output filter chain. /* Send an EOR bucket through the output filter chain. When
* When this bucket is destroyed, the request will be logged and * this bucket is destroyed, the request will be logged and
* its pool will be freed * its pool will be freed
*/ */
bb = apr_brigade_create(c->pool, c->bucket_alloc); bb = apr_brigade_create(c->pool, c->bucket_alloc);