]> granicus.if.org Git - apache/commitdiff
Fix a broken thing
authorWilliam A. Rowe Jr <wrowe@apache.org>
Wed, 18 Oct 2000 17:38:30 +0000 (17:38 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Wed, 18 Oct 2000 17:38:30 +0000 (17:38 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86645 13f79535-47bb-0310-9956-ffa450edef68

include/http_request.h
modules/http/http_request.c

index 444eddca6148da5239512efb26cbe0e021d413af..b1402b346caa2b8caccc0b52f98e7634e1749991 100644 (file)
@@ -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
index 72422808c5a32f8bb58159cd668de2e7a458cfba..4c5b62d2edd81ca9e4276a5f5ad65680f540efbb 100644 (file)
@@ -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);