]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Revert r1705157: why not "insert the filter (twice) for sub-requests" actually?
authorYann Ylavic <ylavic@apache.org>
Thu, 24 Sep 2015 21:31:34 +0000 (21:31 +0000)
committerYann Ylavic <ylavic@apache.org>
Thu, 24 Sep 2015 21:31:34 +0000 (21:31 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1705160 13f79535-47bb-0310-9956-ffa450edef68

modules/loggers/mod_logio.c

index c198964895999fdbd1fa233209160f3fb9f59aa6..58aa92cf051f0f7df0790ff8dcf3f6214b9da98c 100644 (file)
@@ -225,7 +225,7 @@ static void logio_insert_filter(request_rec * r)
 {
     logio_dirconf_t *conf = ap_get_module_config(r->per_dir_config,
                                                  &logio_module);
-    if (conf->track_ttfb && !r->main) { 
+    if (conf->track_ttfb) { 
         ap_add_output_filter(logio_ttfb_filter_name, NULL, r, r->connection);
     }
     return;