From: William A. Rowe Jr Date: Wed, 18 Oct 2000 17:38:30 +0000 (+0000) Subject: Fix a broken thing X-Git-Tag: APACHE_2_0_ALPHA_8~323 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=4743e5fa7ad0093be8c9f4a6dc3ed5c5f207994b;p=thirdparty%2Fapache%2Fhttpd.git Fix a broken thing git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86645 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/http_request.h b/include/http_request.h index 444eddca614..b1402b346ca 100644 --- a/include/http_request.h +++ b/include/http_request.h @@ -129,8 +129,8 @@ AP_DECLARE(request_rec *) ap_sub_req_method_uri(const char *method, * @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 diff --git a/modules/http/http_request.c b/modules/http/http_request.c index 72422808c5a..4c5b62d2edd 100644 --- a/modules/http/http_request.c +++ b/modules/http/http_request.c @@ -817,8 +817,8 @@ static request_rec *make_sub_request(const request_rec *r) 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);