]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Remove some gratuitous comments.
authorBill Stoddard <stoddard@apache.org>
Mon, 1 Apr 2002 17:13:19 +0000 (17:13 +0000)
committerBill Stoddard <stoddard@apache.org>
Mon, 1 Apr 2002 17:13:19 +0000 (17:13 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94361 13f79535-47bb-0310-9956-ffa450edef68

modules/experimental/mod_cache.c

index 6a5d5ca3c0fdac84f4f12595cc1de8683f1581f8..dde7c4e39d1a7676452749095c829da2315ab1f1 100644 (file)
@@ -252,9 +252,9 @@ static int cache_url_handler(request_rec *r, int lookup)
                              r->server,
                              "cache: conditional - add cache_in filter and "
                              "DECLINE");
-                /* add cache_in filter */
+
                 ap_add_output_filter("CACHE_IN", NULL, r, r->connection);
-                /* return DECLINED */
+
                 return DECLINED;
             }
             /* else if non-conditional request */
@@ -284,9 +284,9 @@ static int cache_url_handler(request_rec *r, int lookup)
                                  r->server,
                                  "cache: nonconditional - no cached "
                                  "etag/lastmods - add cache_in and DECLINE");
-                    /* add cache_in filter to cache this request */
+
                     ap_add_output_filter("CACHE_IN", NULL, r, r->connection);
-                    /* return DECLINED */
+
                     return DECLINED;
                 }
                 /* add cache_conditional filter */
@@ -298,7 +298,7 @@ static int cache_url_handler(request_rec *r, int lookup)
                                      NULL, 
                                      r, 
                                      r->connection);
-                /* return DECLINED */
+
                 return DECLINED;
             }
         }
@@ -339,7 +339,9 @@ static int cache_out_filter(ap_filter_t *f, apr_bucket_brigade *bb)
     ap_log_error(APLOG_MARK, APLOG_DEBUG | APLOG_NOERRNO, 0, r->server,
             "cache: running CACHE_OUT filter");
 
-    /* TODO: Handle getting errors on either of these calls */
+    /* TODO: Handle getting errors on either of these calls 
+     * ???: Should we return headers on a subrequest?
+     */
     cache_read_entity_headers(cache->handle, r);    
     cache_read_entity_body(cache->handle, r->pool, bb);