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/04/03 14:10:23 UTC

svn commit: r391025 - /httpd/httpd/trunk/server/core.c

Author: jim
Date: Mon Apr  3 05:10:22 2006
New Revision: 391025

URL: http://svn.apache.org/viewcvs?rev=391025&view=rev
Log:

We actually want to reach the rest of the code :)


Modified:
    httpd/httpd/trunk/server/core.c

Modified: httpd/httpd/trunk/server/core.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/server/core.c?rev=391025&r1=391024&r2=391025&view=diff
==============================================================================
--- httpd/httpd/trunk/server/core.c (original)
+++ httpd/httpd/trunk/server/core.c Mon Apr  3 05:10:22 2006
@@ -3595,7 +3595,6 @@
         e = apr_bucket_eos_create(c->bucket_alloc);
         APR_BRIGADE_INSERT_TAIL(bb, e);
 
-        return ap_pass_brigade(r->output_filters, bb);
         status = ap_pass_brigade(r->output_filters, bb);
         if (status == APR_SUCCESS
             || r->status != HTTP_OK



Re: svn commit: r391025 - /httpd/httpd/trunk/server/core.c

Posted by Jeff Trawick <tr...@gmail.com>.
On 4/3/06, jim@apache.org <ji...@apache.org> wrote:
> Author: jim
> Date: Mon Apr  3 05:10:22 2006
> New Revision: 391025
>
> URL: http://svn.apache.org/viewcvs?rev=391025&view=rev
> Log:
>
> We actually want to reach the rest of the code :)

Thanks for cleaning up after me!!!