You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2005/10/03 13:30:09 UTC

svn commit: r293310 - in /httpd/httpd/branches/2.2.x/modules/cache: cache_storage.c mod_cache.h

Author: colm
Date: Mon Oct  3 04:30:06 2005
New Revision: 293310

URL: http://svn.apache.org/viewcvs?rev=293310&view=rev
Log:
Sync with trunk; remove a now unused variable, and fix a comment. 

Modified:
    httpd/httpd/branches/2.2.x/modules/cache/cache_storage.c
    httpd/httpd/branches/2.2.x/modules/cache/mod_cache.h

Modified: httpd/httpd/branches/2.2.x/modules/cache/cache_storage.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.2.x/modules/cache/cache_storage.c?rev=293310&r1=293309&r2=293310&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/modules/cache/cache_storage.c (original)
+++ httpd/httpd/branches/2.2.x/modules/cache/cache_storage.c Mon Oct  3 04:30:06 2005
@@ -245,7 +245,7 @@
                     /* headers do not match, so Vary failed */
                     ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS,
                                 r->server,
-                                "cache_select(): Vary header mismatch.");
+                                "cache_select_url(): Vary header mismatch.");
                     return DECLINED;
                 }
             }

Modified: httpd/httpd/branches/2.2.x/modules/cache/mod_cache.h
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.2.x/modules/cache/mod_cache.h?rev=293310&r1=293309&r2=293310&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/modules/cache/mod_cache.h (original)
+++ httpd/httpd/branches/2.2.x/modules/cache/mod_cache.h Mon Oct  3 04:30:06 2005
@@ -111,7 +111,6 @@
 struct cache_enable {
     apr_uri_t url;
     const char *type;
-    apr_size_t urllen;
     apr_size_t pathlen;
 };