diff options
author | Yann Ylavic <ylavic@apache.org> | 2017-11-09 00:49:13 +0100 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2017-11-09 00:49:13 +0100 |
commit | e8a57f3e7d96328d33c23c6a967b9fdb01f5c208 (patch) | |
tree | 3fede91d74abe1ed6eb3707f09adb559ca4adeaa /modules/http | |
parent | We can't possibly loop in ap_process_http_async_connection(). (diff) | |
download | apache2-e8a57f3e7d96328d33c23c6a967b9fdb01f5c208.tar.xz apache2-e8a57f3e7d96328d33c23c6a967b9fdb01f5c208.zip |
Follow up to r1814659.
One more style fix in ap_process_http_async_connection().
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1814660 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http')
-rw-r--r-- | modules/http/http_core.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/http/http_core.c b/modules/http/http_core.c index 3b8afbc927..746cf704a7 100644 --- a/modules/http/http_core.c +++ b/modules/http/http_core.c @@ -151,7 +151,9 @@ static int ap_process_http_async_connection(conn_rec *c) if (r->status == HTTP_OK) { cs->state = CONN_STATE_HANDLER; - if (ap_extended_status) ap_set_conn_count(c->sbh, r, c->keepalives+1); + if (ap_extended_status) { + ap_set_conn_count(c->sbh, r, c->keepalives + 1); + } ap_update_child_status(c->sbh, SERVER_BUSY_WRITE, r); ap_process_async_request(r); /* After the call to ap_process_request, the |