From e8a57f3e7d96328d33c23c6a967b9fdb01f5c208 Mon Sep 17 00:00:00 2001 From: Yann Ylavic Date: Wed, 8 Nov 2017 23:49:13 +0000 Subject: [PATCH] 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 --- modules/http/http_core.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 -- 2.40.0