diff options
-rw-r--r-- | include/http_protocol.h | 2 | ||||
-rw-r--r-- | modules/http/http_protocol.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/http_protocol.h b/include/http_protocol.h index 3cdf4d7202..8ae6932ffe 100644 --- a/include/http_protocol.h +++ b/include/http_protocol.h @@ -112,7 +112,7 @@ AP_DECLARE(void) ap_basic_http_header(request_rec *r); */ AP_DECLARE(void) ap_send_http_header(request_rec *l); -AP_CORE_DECLARE_NONSTD(int) ap_http_header_filter(ap_filter_t *f, ap_bucket_brigade *b); +AP_CORE_DECLARE_NONSTD(apr_status_t) ap_http_header_filter(ap_filter_t *f, ap_bucket_brigade *b); /* Send the response to special method requests */ diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index 2711938532..e3cb35a68a 100644 --- a/modules/http/http_protocol.c +++ b/modules/http/http_protocol.c @@ -2221,7 +2221,7 @@ AP_DECLARE(void) ap_send_http_header(request_rec *r) { } -AP_CORE_DECLARE_NONSTD(int) ap_http_header_filter(ap_filter_t *f, ap_bucket_brigade *b) +AP_CORE_DECLARE_NONSTD(apr_status_t) ap_http_header_filter(ap_filter_t *f, ap_bucket_brigade *b) { int i; const long int zero = 0L; |