From: Jim Jagielski Date: Fri, 6 Jan 2006 20:04:43 +0000 (+0000) Subject: Explain how we're checking to see if ap_proxy_backend_broke() X-Git-Tag: 2.3.0~2630 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=32df739a8fd89b06bba26156eb27a4dc2c05af5e;p=thirdparty%2Fapache%2Fhttpd.git Explain how we're checking to see if ap_proxy_backend_broke() has been called or not. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@366558 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy_ajp.c b/modules/proxy/mod_proxy_ajp.c index abfaa0d2d81..3c97162cced 100644 --- a/modules/proxy/mod_proxy_ajp.c +++ b/modules/proxy/mod_proxy_ajp.c @@ -432,7 +432,8 @@ static int ap_proxy_ajp_request(apr_pool_t *p, request_rec *r, /* * Ensure that we sent an EOS bucket thru the filter chain, if we already * have sent some data. Maybe ap_proxy_backend_broke was called and added - * one to the brigade already. So we should not do this in this case. + * one to the brigade already (no longer making it empty). So we should + * not do this in this case. */ if (data_sent && !r->eos_sent && APR_BRIGADE_EMPTY(output_brigade)) { e = apr_bucket_eos_create(r->connection->bucket_alloc);