From: Ian Holsman Date: Sat, 23 Feb 2002 03:58:05 +0000 (+0000) Subject: forgot the ap-declare's X-Git-Tag: 2.0.33~155 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=78656a3bf19871f6fa3fe2b48f454f78432bc0c7;p=apache 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 --- 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); }