diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2002-04-01 04:39:31 +0200 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2002-04-01 04:39:31 +0200 |
commit | 9644d3cdba5da7e2b0aeffec6b2386522413580d (patch) | |
tree | 92a399e16b59035eafc9d0f2bf15a5986cfb00c5 /modules/proxy | |
parent | Get the Perchild MPM to compile and serve pages again. There are a lot (diff) | |
download | apache2-9644d3cdba5da7e2b0aeffec6b2386522413580d.tar.xz apache2-9644d3cdba5da7e2b0aeffec6b2386522413580d.zip |
Fix another linkage error for 2.0.34 and cvs head
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94350 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/proxy')
-rw-r--r-- | modules/proxy/mod_proxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/proxy/mod_proxy.c b/modules/proxy/mod_proxy.c index 81a5695598..cb9c6ea247 100644 --- a/modules/proxy/mod_proxy.c +++ b/modules/proxy/mod_proxy.c @@ -1051,7 +1051,7 @@ APR_DECLARE_OPTIONAL_FN(int, ssl_proxy_enable, (conn_rec *)); static APR_OPTIONAL_FN_TYPE(ssl_proxy_enable) *proxy_ssl_enable = NULL; -int ap_proxy_ssl_enable(conn_rec *c) +PROXY_DECLARE(int) ap_proxy_ssl_enable(conn_rec *c) { /* * if c == NULL just check if the optional function was imported |