summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2012-02-03 19:59:26 +0000
committerStefan Fritsch <sf@apache.org>2012-02-03 19:59:26 +0000
commit9f326969dacd39eef1d600ec6461e5fedbecb7a6 (patch)
tree4f08ffdb1c16a57770ad29b52dd4bcc465c9785a /include
parent286e5fb71a5f2133998fab419a7784eca6c3dc36 (diff)
downloadhttpd-9f326969dacd39eef1d600ec6461e5fedbecb7a6.tar.gz
Merge r1240315:
Fix various filter functions to return apr_status_t instead of int git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1240320 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/http_core.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/http_core.h b/include/http_core.h
index c4f4bacfa7..fc1b939aa5 100644
--- a/include/http_core.h
+++ b/include/http_core.h
@@ -680,9 +680,9 @@ AP_CORE_DECLARE(const char *) ap_add_if_conf(apr_pool_t *p, core_dir_config *con
AP_CORE_DECLARE_NONSTD(const char *) ap_limit_section(cmd_parms *cmd, void *dummy, const char *arg);
/* Core filters; not exported. */
-int ap_core_input_filter(ap_filter_t *f, apr_bucket_brigade *b,
- ap_input_mode_t mode, apr_read_type_e block,
- apr_off_t readbytes);
+apr_status_t ap_core_input_filter(ap_filter_t *f, apr_bucket_brigade *b,
+ ap_input_mode_t mode, apr_read_type_e block,
+ apr_off_t readbytes);
apr_status_t ap_core_output_filter(ap_filter_t *f, apr_bucket_brigade *b);