summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Stoddard <stoddard@apache.org>2001-02-09 19:15:01 +0100
committerBill Stoddard <stoddard@apache.org>2001-02-09 19:15:01 +0100
commit0c9ba2539bfe7434c46cca058d6b5f1f26714bf4 (patch)
tree67814892900df08101fede2b35bfae39e90a199c
parentReplace reinit_scoreboard with ap_create_scoreboard. (diff)
downloadapache2-0c9ba2539bfe7434c46cca058d6b5f1f26714bf4.tar.xz
apache2-0c9ba2539bfe7434c46cca058d6b5f1f26714bf4.zip
Fix another windows compile break.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88038 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--include/util_filter.h2
-rw-r--r--server/util_filter.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/util_filter.h b/include/util_filter.h
index 6ddee20523..8667338704 100644
--- a/include/util_filter.h
+++ b/include/util_filter.h
@@ -400,7 +400,7 @@ AP_DECLARE(apr_status_t) ap_save_brigade(ap_filter_t *f, apr_bucket_brigade **sa
* @param ctx The filter to pass the brigade to
* @deffunc apr_status_t ap_filter_flush(apr_bucket_brigade *bb, void *ctx)
*/
-AP_DECLARE(apr_status_t) ap_filter_flush(apr_bucket_brigade *bb, void *ctx);
+AP_DECLARE_NONSTD(apr_status_t) ap_filter_flush(apr_bucket_brigade *bb, void *ctx);
/**
* Flush the current brigade down the filter stack
diff --git a/server/util_filter.c b/server/util_filter.c
index 209f0cff8b..ce71cdebe3 100644
--- a/server/util_filter.c
+++ b/server/util_filter.c
@@ -266,7 +266,7 @@ AP_DECLARE(apr_status_t) ap_save_brigade(ap_filter_t *f, apr_bucket_brigade **sa
return APR_SUCCESS;
}
-AP_DECLARE(apr_status_t) ap_filter_flush(apr_bucket_brigade *bb, void *ctx)
+AP_DECLARE_NONSTD(apr_status_t) ap_filter_flush(apr_bucket_brigade *bb, void *ctx)
{
ap_filter_t *f = ctx;