wrowe 00/10/18 10:38:30
Modified: src/main http_request.c src/include http_request.h Log: Fix a broken thing Revision Changes Path 1.62 +2 -2 apache-2.0/src/main/http_request.c Index: http_request.c =================================================================== RCS file: /home/cvs/apache-2.0/src/main/http_request.c,v retrieving revision 1.61 retrieving revision 1.62 diff -u -r1.61 -r1.62 --- http_request.c 2000/10/17 00:24:36 1.61 +++ http_request.c 2000/10/18 17:38:28 1.62 @@ -817,8 +817,8 @@ return rr; } -AP_CORE_DECLARE(apr_status_t) ap_sub_req_output_filter(ap_filter_t *f, - ap_bucket_brigade *bb) +AP_CORE_DECLARE_NONSTD(apr_status_t) ap_sub_req_output_filter(ap_filter_t *f, + ap_bucket_brigade *bb) { ap_bucket *e = AP_BRIGADE_LAST(bb); 1.19 +2 -2 apache-2.0/src/include/http_request.h Index: http_request.h =================================================================== RCS file: /home/cvs/apache-2.0/src/include/http_request.h,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- http_request.h 2000/10/16 23:15:54 1.18 +++ http_request.h 2000/10/18 17:38:30 1.19 @@ -129,8 +129,8 @@ * @param bb The brigade to filter * @deffuc apr_status_t ap_sub_req_output_filter(ap_filter_t *f, ap_bucket_brigade *bb) */ -AP_CORE_DECLARE(apr_status_t) ap_sub_req_output_filter(ap_filter_t *f, - ap_bucket_brigade *bb); +AP_CORE_DECLARE_NONSTD(apr_status_t) ap_sub_req_output_filter(ap_filter_t *f, + ap_bucket_brigade *bb); /** * Run the handler for the sub request