From: Ruediger Pluem Date: Sat, 19 Apr 2008 10:15:14 +0000 (+0000) Subject: * Style fixes. No functional changes. X-Git-Tag: 2.3.0~694 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bed15a9a7f000a0252bf6f1274610b7d40dfd144;p=apache * Style fixes. No functional changes. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@649792 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/cache/cache_util.c b/modules/cache/cache_util.c index 084ec7661b..4c6c0833d4 100644 --- a/modules/cache/cache_util.c +++ b/modules/cache/cache_util.c @@ -640,17 +640,17 @@ CACHE_DECLARE(apr_table_t *)ap_cache_cacheable_hdrs_out(apr_pool_t *p, * Create a new table consisting of those elements from an input * headers table that are allowed to be stored in a cache. */ -CACHE_DECLARE(apr_table_t *)ap_cache_cacheable_headers_in(request_rec * r) +CACHE_DECLARE(apr_table_t *)ap_cache_cacheable_headers_in(request_rec *r) { return ap_cache_cacheable_headers(r->pool, r->headers_in, r->server); } /* * Create a new table consisting of those elements from an output - * headers table that are allowed to be stored in a cache; + * headers table that are allowed to be stored in a cache; * ensure there is a content type and capture any errors. */ -CACHE_DECLARE(apr_table_t *)ap_cache_cacheable_headers_out(request_rec * r) +CACHE_DECLARE(apr_table_t *)ap_cache_cacheable_headers_out(request_rec *r) { apr_table_t *headers_out; diff --git a/modules/cache/mod_cache.h b/modules/cache/mod_cache.h index cc70558963..50d96fe18c 100644 --- a/modules/cache/mod_cache.h +++ b/modules/cache/mod_cache.h @@ -296,13 +296,13 @@ CACHE_DECLARE(apr_table_t *)ap_cache_cacheable_headers(apr_pool_t *pool, /* Create a new table consisting of those elements from an input * headers table that are allowed to be stored in a cache. */ -CACHE_DECLARE(apr_table_t *)ap_cache_cacheable_headers_in(request_rec * r); +CACHE_DECLARE(apr_table_t *)ap_cache_cacheable_headers_in(request_rec *r); /* Create a new table consisting of those elements from an output * headers table that are allowed to be stored in a cache; * ensure there is a content type and capture any errors. */ -CACHE_DECLARE(apr_table_t *)ap_cache_cacheable_headers_out(request_rec * r); +CACHE_DECLARE(apr_table_t *)ap_cache_cacheable_headers_out(request_rec *r); /* Legacy call - functionally equivalent to ap_cache_cacheable_headers. * @deprecated @see ap_cache_cacheable_headers