Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 62547 invoked from network); 4 Oct 2010 22:36:16 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 4 Oct 2010 22:36:16 -0000 Received: (qmail 94727 invoked by uid 500); 4 Oct 2010 22:36:16 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 94653 invoked by uid 500); 4 Oct 2010 22:36:16 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 94646 invoked by uid 99); 4 Oct 2010 22:36:15 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Oct 2010 22:36:15 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Oct 2010 22:36:15 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4C54123888CE; Mon, 4 Oct 2010 22:35:55 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1004463 - /httpd/httpd/trunk/modules/cache/mod_disk_cache.c Date: Mon, 04 Oct 2010 22:35:55 -0000 To: cvs@httpd.apache.org From: minfrin@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101004223555.4C54123888CE@eris.apache.org> Author: minfrin Date: Mon Oct 4 22:35:54 2010 New Revision: 1004463 URL: http://svn.apache.org/viewvc?rev=1004463&view=rev Log: Remove (and no longer initialise) an unused variable. Modified: httpd/httpd/trunk/modules/cache/mod_disk_cache.c Modified: httpd/httpd/trunk/modules/cache/mod_disk_cache.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/mod_disk_cache.c?rev=1004463&r1=1004462&r2=1004463&view=diff ============================================================================== --- httpd/httpd/trunk/modules/cache/mod_disk_cache.c (original) +++ httpd/httpd/trunk/modules/cache/mod_disk_cache.c Mon Oct 4 22:35:54 2010 @@ -1064,8 +1064,6 @@ static apr_status_t store_body(cache_han apr_bucket *e; apr_status_t rv = APR_SUCCESS; disk_cache_object_t *dobj = (disk_cache_object_t *) h->cache_obj->vobj; - disk_cache_conf *conf = ap_get_module_config(r->server->module_config, - &disk_cache_module); disk_cache_dir_conf *dconf = ap_get_module_config(r->per_dir_config, &disk_cache_module); int seen_eos = 0;