From: Yann Ylavic Date: Wed, 8 Sep 2021 08:21:22 +0000 (+0000) Subject: mod_proxy: Axe unused ap_filter_input_pending in 2.4.x (only) after r1892971. X-Git-Tag: candidate-2.4.49-rc1~3^2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a67c610394964a29171b738beb394bb9e058ed18;p=thirdparty%2Fapache%2Fhttpd.git mod_proxy: Axe unused ap_filter_input_pending in 2.4.x (only) after r1892971. Submitted by: ylavic Reviewed by: ylavic, icing, covener git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1893107 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c index 45ec5f40532..00ae50fce42 100644 --- a/modules/proxy/proxy_util.c +++ b/modules/proxy/proxy_util.c @@ -4457,11 +4457,6 @@ static APR_INLINE int ap_filter_output_pending(conn_rec *c) return c->data_in_output_filters ? OK : DECLINED; } -static APR_INLINE int ap_filter_input_pending(conn_rec *c) -{ - return c->data_in_input_filters ? OK : DECLINED; -} - PROXY_DECLARE(apr_status_t) ap_proxy_buckets_lifetime_transform(request_rec *r, apr_bucket_brigade *from, apr_bucket_brigade *to)