summaryrefslogtreecommitdiff
path: root/modules/filters
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2020-04-22 11:25:40 +0000
committerJoe Orton <jorton@apache.org>2020-04-22 11:25:40 +0000
commit7cd29dcbb5d985727f35092d024e25d3d63e9544 (patch)
tree8257a7d0512ae07c09c33814f93f090ca539f533 /modules/filters
parentec13a661800d7db947485cdf1800e375e70f5fb8 (diff)
downloadhttpd-7cd29dcbb5d985727f35092d024e25d3d63e9544.tar.gz
* modules/filters/mod_proxy_html.c: Fix proxy_html_conf.bufsz
to have correct type, as it is used with ap_set_int_slot. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1876823 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/filters')
-rw-r--r--modules/filters/mod_proxy_html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/filters/mod_proxy_html.c b/modules/filters/mod_proxy_html.c
index c50b07a0c1..66b56a367c 100644
--- a/modules/filters/mod_proxy_html.c
+++ b/modules/filters/mod_proxy_html.c
@@ -107,7 +107,7 @@ typedef struct {
const char *doctype;
const char *etag;
unsigned int flags;
- size_t bufsz;
+ int bufsz;
apr_hash_t *links;
apr_array_header_t *events;
const char *charset_out;