summaryrefslogtreecommitdiff
path: root/include/httpd.h
diff options
context:
space:
mode:
authorChristophe Jaillet <jailletc36@apache.org>2019-08-10 15:26:01 +0000
committerChristophe Jaillet <jailletc36@apache.org>2019-08-10 15:26:01 +0000
commit1cdd85866bcc528a25fdeeb54cb5ee01c48a0782 (patch)
tree084416c3c2ed3815aed5a802514d85efaf2285c5 /include/httpd.h
parent48d5813674ce2c9ce3f5efb20a37df3928f4e47e (diff)
downloadhttpd-1cdd85866bcc528a25fdeeb54cb5ee01c48a0782.tar.gz
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
Diffstat (limited to 'include/httpd.h')
-rw-r--r--include/httpd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/httpd.h b/include/httpd.h
index 1c6a242a89..ef5c934471 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 {