From 2de52aaf12628635bb2e9139ef8e5d0028ac14e5 Mon Sep 17 00:00:00 2001 From: brenosilva Date: Wed, 4 May 2011 18:59:01 +0000 Subject: [PATCH] Wrong lenght information in input filter when forward stream variable --- apache2/apache2_io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apache2/apache2_io.c b/apache2/apache2_io.c index b080b1c2..1e5d070c 100644 --- a/apache2/apache2_io.c +++ b/apache2/apache2_io.c @@ -121,7 +121,7 @@ apr_status_t input_filter(ap_filter_t *f, apr_bucket_brigade *bb_out, APR_BRIGADE_INSERT_TAIL(bb_out, bucket); if (msr->txcfg->debuglog_level >= 4) { - msr_log(msr, 4, "Input stream filter: Forwarded %" APR_SIZE_T_FMT " bytes.", msr->msc_reqbody_disk_chunk->length); + msr_log(msr, 4, "Input stream filter: Forwarded %" APR_SIZE_T_FMT " bytes.", msr->stream_input_length); } }