]> granicus.if.org Git - apache/commitdiff
Fix the return type of ap_http_header_filter().
authorJeff Trawick <trawick@apache.org>
Sun, 22 Oct 2000 12:53:59 +0000 (12:53 +0000)
committerJeff Trawick <trawick@apache.org>
Sun, 22 Oct 2000 12:53:59 +0000 (12:53 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86698 13f79535-47bb-0310-9956-ffa450edef68

include/http_protocol.h
modules/http/http_protocol.c

index 3cdf4d720286602d23f3d2b5d8085e1f5f16936d..8ae6932ffeaaee149e1e05aa17ec84d4a6f71584 100644 (file)
@@ -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 */
 
index 27119385328829f14ec1b2ea7930e49d744eba12..e3cb35a68a37ebedda0671460bf7a7720038be6a 100644 (file)
@@ -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;