]> granicus.if.org Git - apache/commitdiff
* modules/experimental/mod_disk_cache.c (recall_headers,
authorJoe Orton <jorton@apache.org>
Thu, 4 Nov 2004 21:51:12 +0000 (21:51 +0000)
committerJoe Orton <jorton@apache.org>
Thu, 4 Nov 2004 21:51:12 +0000 (21:51 +0000)
create_entity): Remove unused variables.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105686 13f79535-47bb-0310-9956-ffa450edef68

modules/experimental/mod_disk_cache.c

index dfca6ea1f42e97433f6143112404f3f21d5588f5..20ff6892b08155b813c610d1518c1aac7825331f 100644 (file)
@@ -265,10 +265,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;
@@ -477,7 +475,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) {