You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2019/08/10 15:26:02 UTC

svn commit: r1864878 - /httpd/httpd/trunk/include/httpd.h

Author: jailletc36
Date: Sat Aug 10 15:26:01 2019
New Revision: 1864878

URL: http://svn.apache.org/viewvc?rev=1864878&view=rev
Log:
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

Modified:
    httpd/httpd/trunk/include/httpd.h

Modified: httpd/httpd/trunk/include/httpd.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/httpd.h?rev=1864878&r1=1864877&r2=1864878&view=diff
==============================================================================
--- httpd/httpd/trunk/include/httpd.h (original)
+++ httpd/httpd/trunk/include/httpd.h Sat Aug 10 15:26:01 2019
@@ -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 {