summaryrefslogtreecommitdiff
path: root/modules/experimental
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2004-11-04 21:51:12 +0000
committerJoe Orton <jorton@apache.org>2004-11-04 21:51:12 +0000
commit5da2cc3d8e01850e247a34266247f6fa34f9604c (patch)
treee53165b71695417dcaf358297a1bf19740f8a44c /modules/experimental
parentd2806c397b50a7abaae9ed55fa59d23972ad67a1 (diff)
downloadhttpd-5da2cc3d8e01850e247a34266247f6fa34f9604c.tar.gz
* modules/experimental/mod_disk_cache.c (recall_headers,
create_entity): Remove unused variables. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105686 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/experimental')
-rw-r--r--modules/experimental/mod_disk_cache.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/modules/experimental/mod_disk_cache.c b/modules/experimental/mod_disk_cache.c
index dfca6ea1f4..20ff6892b0 100644
--- a/modules/experimental/mod_disk_cache.c
+++ b/modules/experimental/mod_disk_cache.c
@@ -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) {