From a9091bba7f3b6f7ed3585f020f43f73e930efc2b Mon Sep 17 00:00:00 2001 From: Martin Kraemer Date: Fri, 18 Apr 2008 10:06:20 +0000 Subject: [PATCH] Make it compile on pre-C99 compilers git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@649446 13f79535-47bb-0310-9956-ffa450edef68 --- modules/cache/cache_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/cache/cache_util.c b/modules/cache/cache_util.c index abff9f5a26..615823a1e6 100644 --- a/modules/cache/cache_util.c +++ b/modules/cache/cache_util.c @@ -588,6 +588,7 @@ CACHE_DECLARE(apr_table_t *)ap_cache_cacheable_headers(apr_pool_t *pool, cache_server_conf *conf; char **header; int i; + apr_table_t *headers_out; /* Short circuit the common case that there are not * (yet) any headers populated. @@ -600,7 +601,6 @@ CACHE_DECLARE(apr_table_t *)ap_cache_cacheable_headers(apr_pool_t *pool, * the copy any hop-by-hop headers, as defined in Section * 13.5.1 of RFC 2616 */ - apr_table_t *headers_out; headers_out = apr_table_copy(pool, t); apr_table_unset(headers_out, "Connection"); -- 2.40.0