]> granicus.if.org Git - apache/commitdiff
Fix a typo when building a TRACE8 message.
authorChristophe Jaillet <jailletc36@apache.org>
Tue, 19 Jan 2016 09:55:25 +0000 (09:55 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Tue, 19 Jan 2016 09:55:25 +0000 (09:55 +0000)
'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

server/util_filter.c

index cb736362e00fccf49408c511e34269fd4d5af1ce..316a0d0dd0ca74c2aadc61bbb6ca5c67b667b1bb 100644 (file)
@@ -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,