From: Stefan Eissing Date: Mon, 17 Aug 2015 12:54:54 +0000 (+0000) Subject: removed unnecessary lingering_close and sbh update on end of protocol upgrade handling X-Git-Tag: 2.5.0-alpha~2954 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0bbd72d2d733417a1a9a3dc5ac212da2b2d9f713;p=apache removed unnecessary lingering_close and sbh update on end of protocol upgrade handling git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1696266 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/core.c b/server/core.c index e7383970a7..909ada6282 100644 --- a/server/core.c +++ b/server/core.c @@ -5323,13 +5323,6 @@ static int core_upgrade_handler(request_rec *r) /* make sure httpd closes the connection after this */ c->keepalive = AP_CONN_CLOSE; - ap_lingering_close(c); - - if (c->sbh) { - ap_update_child_status_from_conn(c->sbh, - SERVER_CLOSING, c); - } - return DONE; } }