mirror of
https://github.com/apache/httpd.git
synced 2025-08-06 11:06:17 +00:00
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
This commit is contained in:
@ -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,
|
||||
|
Reference in New Issue
Block a user