]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
A no-op, these variables are simply unused on branches/2.0.x
authorWilliam A. Rowe Jr <wrowe@apache.org>
Thu, 7 Jul 2005 19:16:00 +0000 (19:16 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Thu, 7 Jul 2005 19:16:00 +0000 (19:16 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@209637 13f79535-47bb-0310-9956-ffa450edef68

modules/experimental/mod_disk_cache.c

index 6e8d0c58ba905c7f82bfd2181e30b902cf2730bc..35466fd4a895a31cc9424c6b5434a33fe99f0641 100644 (file)
@@ -266,10 +266,8 @@ static int create_entity(cache_handle_t *h, request_rec *r,
 {
     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 read_table(cache_handle_t *handle, request_rec *r,
 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) {