You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rp...@apache.org on 2008/04/19 12:15:21 UTC

svn commit: r649792 - in /httpd/httpd/trunk/modules/cache: cache_util.c mod_cache.h

Author: rpluem
Date: Sat Apr 19 03:15:14 2008
New Revision: 649792

URL: http://svn.apache.org/viewvc?rev=649792&view=rev
Log:
* Style fixes. No functional changes.

Modified:
    httpd/httpd/trunk/modules/cache/cache_util.c
    httpd/httpd/trunk/modules/cache/mod_cache.h

Modified: httpd/httpd/trunk/modules/cache/cache_util.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/cache_util.c?rev=649792&r1=649791&r2=649792&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/cache/cache_util.c (original)
+++ httpd/httpd/trunk/modules/cache/cache_util.c Sat Apr 19 03:15:14 2008
@@ -640,17 +640,17 @@
  * 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;
 

Modified: httpd/httpd/trunk/modules/cache/mod_cache.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/mod_cache.h?rev=649792&r1=649791&r2=649792&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/cache/mod_cache.h (original)
+++ httpd/httpd/trunk/modules/cache/mod_cache.h Sat Apr 19 03:15:14 2008
@@ -296,13 +296,13 @@
 /* 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