trawick 00/10/22 05:53:59
Modified: src/main http_protocol.c src/include http_protocol.h Log: Fix the return type of ap_http_header_filter(). Revision Changes Path 1.200 +1 -1 apache-2.0/src/main/http_protocol.c Index: http_protocol.c =================================================================== RCS file: /home/cvs/apache-2.0/src/main/http_protocol.c,v retrieving revision 1.199 retrieving revision 1.200 diff -u -r1.199 -r1.200 --- http_protocol.c 2000/10/22 10:34:05 1.199 +++ http_protocol.c 2000/10/22 12:53:58 1.200 @@ -2221,7 +2221,7 @@ { } -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; 1.34 +1 -1 apache-2.0/src/include/http_protocol.h Index: http_protocol.h =================================================================== RCS file: /home/cvs/apache-2.0/src/include/http_protocol.h,v retrieving revision 1.33 retrieving revision 1.34 diff -u -r1.33 -r1.34 --- http_protocol.h 2000/10/22 10:34:03 1.33 +++ http_protocol.h 2000/10/22 12:53:59 1.34 @@ -112,7 +112,7 @@ */ 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 */