]> granicus.if.org Git - apache/commitdiff
* Style fixes. No functional changes.
authorRuediger Pluem <rpluem@apache.org>
Sat, 19 Apr 2008 10:15:14 +0000 (10:15 +0000)
committerRuediger Pluem <rpluem@apache.org>
Sat, 19 Apr 2008 10:15:14 +0000 (10:15 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@649792 13f79535-47bb-0310-9956-ffa450edef68

modules/cache/cache_util.c
modules/cache/mod_cache.h

index 084ec7661bf9d14e471b53db202d7398eec12ea1..4c6c0833d4cb604a1fa004893903fe432f1520bf 100644 (file)
@@ -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;
 
index cc70558963d79422dfaf47dc0cda1c87e147f0e6..50d96fe18ce14cfc557fb04bb688d6fbd99ac776 100644 (file)
@@ -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