1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-07 04:02:58 +03:00

Arrange the C++ declarations to make my compiler happy.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1691592 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jean-Frederic Clere
2015-07-17 15:46:19 +00:00
parent c5ebe036e6
commit 867e69cc24
22 changed files with 190 additions and 120 deletions

View File

@@ -54,6 +54,7 @@ static apr_status_t insert_request_line(h2_request *req, h2_mplx *m);
apr_status_t h2_request_rwrite(h2_request *req, request_rec *r, h2_mplx *m)
{
apr_status_t status;
req->method = r->method;
req->path = r->uri;
req->authority = r->hostname;
@@ -64,7 +65,7 @@ apr_status_t h2_request_rwrite(h2_request *req, request_rec *r, h2_mplx *m)
req->scheme = NULL;
apr_status_t status = insert_request_line(req, m);
status = insert_request_line(req, m);
if (status == APR_SUCCESS) {
status = h2_to_h1_add_headers(req->to_h1, r->headers_in);
}