summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Pane <brianp@apache.org>2005-09-25 04:25:53 +0000
committerBrian Pane <brianp@apache.org>2005-09-25 04:25:53 +0000
commit6fb4c5ab571345e9485120d8bebb7bec39f5e1bd (patch)
tree35c4083dfdc1e46b369cce28f0d8b138ae153a6f
parent188f4af37af66e3b9e2a85ad88e7b8b8db33da91 (diff)
downloadhttpd-6fb4c5ab571345e9485120d8bebb7bec39f5e1bd.tar.gz
doh!
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/async-dev@291375 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--modules/http/http_core.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/http/http_core.c b/modules/http/http_core.c
index 805129f557..a414e6be47 100644
--- a/modules/http/http_core.c
+++ b/modules/http/http_core.c
@@ -122,9 +122,10 @@ static int ap_process_http_async_connection(conn_rec *c)
/* 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);