]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Backports: r1407088
authorWilliam A. Rowe Jr <wrowe@apache.org>
Thu, 22 Dec 2016 19:34:48 +0000 (19:34 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Thu, 22 Dec 2016 19:34:48 +0000 (19:34 +0000)
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

server/protocol.c

index 61f897602b5429c43f4c3c20b86c605724a18657..3963ef305f0e662ee2aed47e033991f0da98992e 100644 (file)
@@ -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'