Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 23609 invoked from network); 25 Sep 2005 04:26:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 25 Sep 2005 04:26:20 -0000 Received: (qmail 51673 invoked by uid 500); 25 Sep 2005 04:26:20 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 51642 invoked by uid 500); 25 Sep 2005 04:26:19 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 51629 invoked by uid 99); 25 Sep 2005 04:26:19 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Sat, 24 Sep 2005 21:26:19 -0700 Received: (qmail 23583 invoked by uid 65534); 25 Sep 2005 04:25:58 -0000 Message-ID: <20050925042558.23582.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r291375 - /httpd/httpd/branches/async-dev/modules/http/http_core.c Date: Sun, 25 Sep 2005 04:25:58 -0000 To: cvs@httpd.apache.org From: brianp@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: brianp Date: Sat Sep 24 21:25:53 2005 New Revision: 291375 URL: http://svn.apache.org/viewcvs?rev=291375&view=rev Log: doh! Modified: httpd/httpd/branches/async-dev/modules/http/http_core.c Modified: httpd/httpd/branches/async-dev/modules/http/http_core.c URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/async-dev/modules/http/http_core.c?rev=291375&r1=291374&r2=291375&view=diff ============================================================================== --- httpd/httpd/branches/async-dev/modules/http/http_core.c (original) +++ httpd/httpd/branches/async-dev/modules/http/http_core.c Sat Sep 24 21:25:53 2005 @@ -122,9 +122,10 @@ /* process the request if it was read without error */ ap_update_child_status(c->sbh, SERVER_BUSY_WRITE, r); - if (r->status == HTTP_OK) + if (r->status == HTTP_OK) { cs->state = CONN_STATE_HANDLER; ap_process_request(r); + } if (ap_extended_status) ap_increment_counts(c->sbh, r);