From: Jeff Trawick Date: Thu, 21 Feb 2002 11:42:03 +0000 (+0000) Subject: fix the linkage of and add a prototype for ap_proxy_table_unmerge() X-Git-Tag: 2.0.33~168 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e8b6f67b6a03ceba7a7b45a0ee812f974f4233d4;p=apache fix the linkage of and add a prototype for ap_proxy_table_unmerge() git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93529 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy.h b/modules/proxy/mod_proxy.h index df7a0b67d1..ce7e157255 100644 --- a/modules/proxy/mod_proxy.h +++ b/modules/proxy/mod_proxy.h @@ -267,6 +267,6 @@ PROXY_DECLARE(int) ap_proxy_checkproxyblock(request_rec *r, proxy_server_conf *c PROXY_DECLARE(int) ap_proxy_pre_http_request(conn_rec *c, request_rec *r); PROXY_DECLARE(apr_status_t) ap_proxy_string_read(conn_rec *c, apr_bucket_brigade *bb, char *buff, size_t bufflen, int *eos); PROXY_DECLARE(void) ap_proxy_reset_output_filters(conn_rec *c); - +PROXY_DECLARE(void) ap_proxy_table_unmerge(apr_pool_t *p, apr_table_t *t, char *key); #endif /*MOD_PROXY_H*/ diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c index 37c65fd213..8181b85ad8 100644 --- a/modules/proxy/proxy_util.c +++ b/modules/proxy/proxy_util.c @@ -1074,7 +1074,7 @@ PROXY_DECLARE(void) ap_proxy_reset_output_filters(conn_rec *c) } /* unmerge an element in the table */ -void ap_proxy_table_unmerge(apr_pool_t *p, apr_table_t *t, char *key) +PROXY_DECLARE(void) ap_proxy_table_unmerge(apr_pool_t *p, apr_table_t *t, char *key) { apr_off_t offset = 0; apr_off_t count = 0;