mirror of
https://github.com/apache/httpd.git
synced 2025-07-30 20:03:10 +03:00
Fix various filter functions to return apr_status_t instead of int
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1240315 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -260,8 +260,11 @@ static apr_status_t pumpit(ap_filter_t *f, apr_bucket *b, firehose_ctx_t *ctx)
|
||||
return rv;
|
||||
}
|
||||
|
||||
static int firehose_input_filter(ap_filter_t *f, apr_bucket_brigade *bb,
|
||||
ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes)
|
||||
static apr_status_t firehose_input_filter(ap_filter_t *f,
|
||||
apr_bucket_brigade *bb,
|
||||
ap_input_mode_t mode,
|
||||
apr_read_type_e block,
|
||||
apr_off_t readbytes)
|
||||
{
|
||||
apr_bucket *b;
|
||||
apr_status_t rv;
|
||||
@ -297,7 +300,8 @@ static int firehose_input_filter(ap_filter_t *f, apr_bucket_brigade *bb,
|
||||
return APR_SUCCESS;
|
||||
}
|
||||
|
||||
static int firehose_output_filter(ap_filter_t *f, apr_bucket_brigade *bb)
|
||||
static apr_status_t firehose_output_filter(ap_filter_t *f,
|
||||
apr_bucket_brigade *bb)
|
||||
{
|
||||
apr_bucket *b;
|
||||
apr_status_t rv = APR_SUCCESS;
|
||||
|
Reference in New Issue
Block a user