diff options
author | Yann Ylavic <ylavic@apache.org> | 2015-09-24 23:31:34 +0200 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2015-09-24 23:31:34 +0200 |
commit | 086fc25c68422074cb65af8dacdb841fe97768c7 (patch) | |
tree | 9caca1cc3b97ba67026b58a82a404717e5196c62 /modules/loggers | |
parent | Follow up to r1705134: don't insert the filter (twice) for sub-requests. (diff) | |
download | apache2-086fc25c68422074cb65af8dacdb841fe97768c7.tar.xz apache2-086fc25c68422074cb65af8dacdb841fe97768c7.zip |
Revert r1705157: why not "insert the filter (twice) for sub-requests" actually?
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1705160 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/loggers')
-rw-r--r-- | modules/loggers/mod_logio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/loggers/mod_logio.c b/modules/loggers/mod_logio.c index c198964895..58aa92cf05 100644 --- a/modules/loggers/mod_logio.c +++ b/modules/loggers/mod_logio.c @@ -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; |