From: William A. Rowe Jr Date: Wed, 18 Oct 2000 17:38:30 +0000 (+0000) Subject: Fix a broken thing X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=641e079c763987cce19deeec0b946ae07ba9621a;p=apache 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 444eddca61..b1402b346c 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 72422808c5..4c5b62d2ed 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);