diff options
author | Jeff Trawick <trawick@apache.org> | 2000-10-22 14:53:59 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2000-10-22 14:53:59 +0200 |
commit | ddf387fdfb4d76d4ea8eb225644c27fad1b156ca (patch) | |
tree | 6d92de1725c692d3728aeb3da855cd13be43ba21 /include/http_protocol.h | |
parent | Fix Win32 compile break introduced by the http_header filter code. (diff) | |
download | apache2-ddf387fdfb4d76d4ea8eb225644c27fad1b156ca.tar.xz apache2-ddf387fdfb4d76d4ea8eb225644c27fad1b156ca.zip |
Fix the return type of ap_http_header_filter().
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86698 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_protocol.h')
-rw-r--r-- | include/http_protocol.h | 2 |
1 files changed, 1 insertions, 1 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 */ |