You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2005/07/07 21:16:02 UTC

svn commit: r209637 - /httpd/httpd/branches/2.0.x/modules/experimental/mod_disk_cache.c

Author: wrowe
Date: Thu Jul  7 12:16:00 2005
New Revision: 209637

URL: http://svn.apache.org/viewcvs?rev=209637&view=rev
Log:

  A no-op, these variables are simply unused on branches/2.0.x

Modified:
    httpd/httpd/branches/2.0.x/modules/experimental/mod_disk_cache.c

Modified: httpd/httpd/branches/2.0.x/modules/experimental/mod_disk_cache.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.0.x/modules/experimental/mod_disk_cache.c?rev=209637&r1=209636&r2=209637&view=diff
==============================================================================
--- httpd/httpd/branches/2.0.x/modules/experimental/mod_disk_cache.c (original)
+++ httpd/httpd/branches/2.0.x/modules/experimental/mod_disk_cache.c Thu Jul  7 12:16:00 2005
@@ -266,10 +266,8 @@
 {
     disk_cache_conf *conf = ap_get_module_config(r->server->module_config,
                                                  &disk_cache_module);
-    apr_status_t rv;
     cache_object_t *obj;
     disk_cache_object_t *dobj;
-    apr_file_t *tmpfile;
 
     if (conf->cache_root == NULL) {
         return DECLINED;
@@ -478,7 +476,6 @@
 static apr_status_t recall_headers(cache_handle_t *h, request_rec *r)
 {
     disk_cache_object_t *dobj = (disk_cache_object_t *) h->cache_obj->vobj;
-    apr_table_t * tmp;
 
     /* This case should not happen... */
     if (!dobj->hfd) {