From f15ef01be924f7de9fabf831dd1e907dbb64bcc9 Mon Sep 17 00:00:00 2001 From: ivanr Date: Wed, 9 Jan 2008 19:05:20 +0000 Subject: [PATCH] Tweak error message to make it clear it's not our fault. --- 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 3e284fcd..a2505d8f 100644 --- a/apache2/apache2_io.c +++ b/apache2/apache2_io.c @@ -622,7 +622,7 @@ apr_status_t output_filter(ap_filter_t *f, apr_bucket_brigade *bb_in) { if (msr->txcfg->of_limit_action == RESPONSE_BODY_LIMIT_ACTION_REJECT) { /* Reject response. */ msr_log(msr, 1, "Output filter: Response body too large (over limit of %lu, " - "total length not known).", msr->txcfg->of_limit); + "total not specified).", msr->txcfg->of_limit); msr->of_status = OF_STATUS_COMPLETE; msr->resbody_status = RESBODY_STATUS_PARTIAL;