From: Christophe Jaillet Date: Tue, 19 Jan 2016 09:55:25 +0000 (+0000) Subject: Fix a typo when building a TRACE8 message. X-Git-Tag: 2.5.0-alpha~2383 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ee4bafbbaee85dbb86389c849cbfc9f0a74e2e49;p=apache Fix a typo when building a TRACE8 message. 'flush_upto' can never be NULL (or there would be a NULL pointer deference earlier in the code), so the alternate message can never trigger. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1725456 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/util_filter.c b/server/util_filter.c index cb736362e0..316a0d0dd0 100644 --- a/server/util_filter.c +++ b/server/util_filter.c @@ -871,8 +871,8 @@ AP_DECLARE(apr_status_t) ap_filter_reinstate_brigade(ap_filter_t *f, "seen in brigade%s: bytes: %" APR_SIZE_T_FMT ", non-file bytes: %" APR_SIZE_T_FMT ", eor " "buckets: %d, morphing buckets: %d", - flush_upto == NULL ? " so far" - : " since last flush point", + *flush_upto == NULL ? " so far" + : " since last flush point", bytes_in_brigade, non_file_bytes_in_brigade, eor_buckets_in_brigade,