From: Christophe Jaillet Date: Sat, 23 May 2020 11:54:10 +0000 (+0000) Subject: Axe 'flushall' from 'mod_proxy_http2.c'. X-Git-Tag: 2.5.0-alpha2-ci-test-only~1423 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fcce6c57454d437bfa6fd28cb3eef8cd0b3bc9bf;p=thirdparty%2Fapache%2Fhttpd.git Axe 'flushall' from 'mod_proxy_http2.c'. It is only set and never used. This makes trunk and 2.4.x more in line. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1878056 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http2/mod_proxy_http2.c b/modules/http2/mod_proxy_http2.c index 83ae431c875..893aa8fd316 100644 --- a/modules/http2/mod_proxy_http2.c +++ b/modules/http2/mod_proxy_http2.c @@ -64,7 +64,6 @@ typedef struct h2_proxy_ctx { int capacity; unsigned is_ssl : 1; - unsigned flushall : 1; request_rec *r; /* the request processed in this ctx */ apr_status_t r_status; /* status of request work */ @@ -337,7 +336,6 @@ static int proxy_http2_handler(request_rec *r, ctx->is_ssl = is_ssl; ctx->worker = worker; ctx->conf = conf; - ctx->flushall = apr_table_get(r->subprocess_env, "proxy-flushall")? 1 : 0; ctx->req_buffer_size = (32*1024); ctx->r = r; ctx->r_status = status = HTTP_SERVICE_UNAVAILABLE;