From: Christophe Jaillet Date: Sat, 10 Aug 2019 15:26:01 +0000 (+0000) Subject: Fix a signed/unsigned comparison in 'ap_filter_should_yield()' and 'ap_request_core_f... X-Git-Tag: 2.5.0-alpha2-ci-test-only~1932 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1cdd85866bcc528a25fdeeb54cb5ee01c48a0782;p=thirdparty%2Fapache%2Fhttpd.git Fix a signed/unsigned comparison in 'ap_filter_should_yield()' and 'ap_request_core_filter()'. This is harmless and only present in trunk. Spotted by gcc 9.1 and -Wextra git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1864878 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/httpd.h b/include/httpd.h index 1c6a242a892..ef5c9344717 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -1229,7 +1229,7 @@ struct conn_rec { struct ap_filter_conn_ctx *filter_conn_ctx; /** The minimum level of filter type to allow setaside buckets */ - int async_filter; + ap_filter_type async_filter; }; struct conn_slave_rec {