From: Stefan Fritsch Date: Sun, 5 Sep 2010 15:56:10 +0000 (+0000) Subject: remove unused variables X-Git-Tag: 2.3.9~509 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5604942f8f1c2a10dc5ec00129e1bc42f9f02fb6;p=thirdparty%2Fapache%2Fhttpd.git remove unused variables git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@992809 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/cache/cache_util.c b/modules/cache/cache_util.c index af180770602..ee8540380e6 100644 --- a/modules/cache/cache_util.c +++ b/modules/cache/cache_util.c @@ -381,7 +381,7 @@ CACHE_DECLARE(apr_status_t) ap_cache_remove_lock(cache_server_conf *conf, } CACHE_DECLARE(int) ap_cache_check_allowed(request_rec *r) { - const char *cc_cresp, *cc_req; + const char *cc_req; const char *pragma; cache_server_conf *conf = (cache_server_conf *)ap_get_module_config(r->server->module_config, diff --git a/modules/cache/mod_cache.c b/modules/cache/mod_cache.c index 76cde9a2efd..a725059bb34 100644 --- a/modules/cache/mod_cache.c +++ b/modules/cache/mod_cache.c @@ -597,7 +597,6 @@ static int cache_save_filter(ap_filter_t *f, apr_bucket_brigade *in) char *reason; apr_pool_t *p; apr_bucket *e; - void *data; conf = (cache_server_conf *) ap_get_module_config(r->server->module_config, &cache_module);