diff options
author | Yann Ylavic <ylavic@apache.org> | 2015-09-25 01:13:03 +0200 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2015-09-25 01:13:03 +0200 |
commit | 9aba39ee0cfecfa9a3832139508a6ccd2d85a33b (patch) | |
tree | bd22873f0776652f5526680be8276c876cd27258 /modules/http | |
parent | Revert r1705157: why not "insert the filter (twice) for sub-requests" actually? (diff) | |
download | apache2-9aba39ee0cfecfa9a3832139508a6ccd2d85a33b.tar.xz apache2-9aba39ee0cfecfa9a3832139508a6ccd2d85a33b.zip |
mod_ssl: forward EOR (only) brigades to the core_output_filter().
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1705194 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http')
-rw-r--r-- | modules/http/http_request.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/http/http_request.c b/modules/http/http_request.c index 0143a2e73f..cbf8840468 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 through the output filter chain. When - * this bucket is destroyed, the request will be logged and + /* Send an EOR bucket (alone!) 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); |