From 78656a3bf19871f6fa3fe2b48f454f78432bc0c7 Mon Sep 17 00:00:00 2001 From: Ian Holsman Date: Sat, 23 Feb 2002 03:58:05 +0000 Subject: [PATCH] forgot the ap-declare's the're needed for win32 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93545 13f79535-47bb-0310-9956-ffa450edef68 --- server/util_filter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/util_filter.c b/server/util_filter.c index 157519c83c..afc0731de2 100644 --- a/server/util_filter.c +++ b/server/util_filter.c @@ -222,12 +222,12 @@ static ap_filter_rec_t *get_filter_handle(const char *name, return NULL; } -ap_filter_rec_t *ap_get_output_filter_handle(const char *name) +AP_DECLARE(ap_filter_rec_t *)ap_get_output_filter_handle(const char *name) { return get_filter_handle(name, registered_output_filters); } -ap_filter_rec_t *ap_get_input_filter_handle(const char *name) +AP_DECLARE(ap_filter_rec_t *)ap_get_input_filter_handle(const char *name) { return get_filter_handle(name, registered_input_filters); } -- 2.50.1