From: Justin Erenkrantz Date: Wed, 19 Sep 2001 06:25:07 +0000 (+0000) Subject: Oftentimes, I make no sense whatsoever. X-Git-Tag: 2.0.26~220 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f7a8e08284b05ea3a4a8d25126dd9029b9c44c7e;p=apache Oftentimes, I make no sense whatsoever. (Clean up comment, really...) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91081 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/filters/mod_include.c b/modules/filters/mod_include.c index 72532fa152..b815642546 100644 --- a/modules/filters/mod_include.c +++ b/modules/filters/mod_include.c @@ -3083,9 +3083,10 @@ static apr_status_t includes_filter(ap_filter_t *f, apr_bucket_brigade *b) apr_table_unset(f->r->headers_out, "Content-Length"); /* Always unset the ETag/Last-Modified fields - see RFC2616 - 13.3.4. - * We don't know if we are going to be include a virtual file (think - * exec) which may make the content completely dynamic or change the - * Last-Modified header. Therefore, we can't support these headers. + * We don't know if we are going to be including a file or executing + * a program which may change the Last-Modified header or make the + * content completely dynamic. Therefore, we can't support these + * headers. */ apr_table_unset(f->r->headers_out, "ETag"); apr_table_unset(f->r->headers_out, "Last-Modified");