From: William A. Rowe Jr Date: Thu, 22 Dec 2016 19:34:48 +0000 (+0000) Subject: Backports: r1407088 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8cbf958d5857fd0922e708b5625c5e0ac9958443;p=thirdparty%2Fapache%2Fhttpd.git Backports: r1407088 Submitted by: sf remove some more old unused code git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x-merge-http-strict@1775713 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/protocol.c b/server/protocol.c index 61f897602b5..3963ef305f0 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -645,8 +645,6 @@ static int read_request_line(request_rec *r, apr_bucket_brigade *bb) } r->protocol = apr_pstrmemdup(r->pool, pro, len); - /* XXX ap_update_connection_status(conn->id, "Protocol", r->protocol); */ - /* Avoid sscanf in the common case */ if (len == 8 && pro[0] == 'H' && pro[1] == 'T' && pro[2] == 'T' && pro[3] == 'P'