You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2006/01/06 21:04:45 UTC

svn commit: r366558 - /httpd/httpd/trunk/modules/proxy/mod_proxy_ajp.c

Author: jim
Date: Fri Jan  6 12:04:43 2006
New Revision: 366558

URL: http://svn.apache.org/viewcvs?rev=366558&view=rev
Log:
Explain how we're checking to see if ap_proxy_backend_broke()
has been called or not. 

Modified:
    httpd/httpd/trunk/modules/proxy/mod_proxy_ajp.c

Modified: httpd/httpd/trunk/modules/proxy/mod_proxy_ajp.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/proxy/mod_proxy_ajp.c?rev=366558&r1=366557&r2=366558&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/mod_proxy_ajp.c (original)
+++ httpd/httpd/trunk/modules/proxy/mod_proxy_ajp.c Fri Jan  6 12:04:43 2006
@@ -432,7 +432,8 @@
     /*
      * 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);