Author: minfrin
Date: Sat Oct 2 22:20:07 2010
New Revision: 1003905
URL: http://svn.apache.org/viewvc?rev=1003905&view=rev
Log:
Remove FIXMEs, they have been fixed.
Modified:
httpd/httpd/trunk/modules/cache/mod_cache.c
Modified: httpd/httpd/trunk/modules/cache/mod_cache.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/mod_cache.c?rev=1003905&r1=1003904&r2=1003905&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/cache/mod_cache.c (original)
+++ httpd/httpd/trunk/modules/cache/mod_cache.c Sat Oct 2 22:20:07 2010
@@ -861,11 +861,6 @@ static int cache_save_filter(ap_filter_t
* indicating do not cache, or stop now if you are
* trying to cache it.
*/
- /* FIXME: The Cache-Control: no-store could have come in on a 304,
- * FIXME: while the original request wasn't conditional. IOW, we
- * FIXME: made the the request conditional earlier to revalidate
- * FIXME: our cached response.
- */
reason = "Cache-Control: no-store present";
}
else if (!dconf->store_private &&
@@ -874,7 +869,6 @@ static int cache_save_filter(ap_filter_t
* this object is marked for this user's eyes only. Behave
* as a tunnel.
*/
- /* FIXME: See above (no-store) */
reason = "Cache-Control: private present";
}
else if (apr_table_get(r->headers_in, "Authorization") != NULL
|