Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 88288 invoked from network); 8 Feb 2005 02:03:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 8 Feb 2005 02:03:51 -0000 Received: (qmail 28018 invoked by uid 500); 8 Feb 2005 02:03:51 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 27983 invoked by uid 500); 8 Feb 2005 02:03:50 -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: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 27970 invoked by uid 99); 8 Feb 2005 02:03:50 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Mon, 07 Feb 2005 18:03:50 -0800 Received: (qmail 88267 invoked by uid 65534); 8 Feb 2005 02:03:49 -0000 Message-ID: <20050208020349.88266.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Mailer: svnmailer-1.0.0-dev Date: Tue, 08 Feb 2005 02:03:49 -0000 Subject: svn commit: r151816 - in httpd/httpd/trunk: CHANGES modules/cache/mod_cache.c To: cvs@httpd.apache.org From: jerenkrantz@apache.org X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Author: jerenkrantz Date: Mon Feb 7 18:03:47 2005 New Revision: 151816 URL: http://svn.apache.org/viewcvs?view=3Drev&rev=3D151816 Log: * modules/cache/mod_cache.c: One more try at proper handling of revalidated responses. .=2E.All together now, we hate uninitialized variables... Modified: httpd/httpd/trunk/CHANGES httpd/httpd/trunk/modules/cache/mod_cache.c Modified: httpd/httpd/trunk/CHANGES URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/CHANGES?view=3Ddiff&r1= =3D151815&r2=3D151816 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- httpd/httpd/trunk/CHANGES (original) +++ httpd/httpd/trunk/CHANGES Mon Feb 7 18:03:47 2005 @@ -2,6 +2,9 @@ =20 [Remove entries to the current 2.0 section below, when backported] =20 + *) mod_cache: One more try at proper handling of revalidated responses. + [Justin Erenkrantz] + *) mod_disk_cache: Properly load cached ETag from on-disk structures. [Justin Erenkrantz] =20 Modified: httpd/httpd/trunk/modules/cache/mod_cache.c URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/cache/mod_cach= e=2Ec?view=3Ddiff&r1=3D151815&r2=3D151816 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- httpd/httpd/trunk/modules/cache/mod_cache.c (original) +++ httpd/httpd/trunk/modules/cache/mod_cache.c Mon Feb 7 18:03:47 2005 @@ -538,6 +538,7 @@ /* Oh, hey. It isn't that stale! Yay! */ cache->handle =3D cache->stale_handle; info =3D &cache->handle->cache_obj->info; + rv =3D OK; } else { /* Oh, well. Toss it. */