From f3ac51aba05db7258b50a28fd6ac917935e1dd83 Mon Sep 17 00:00:00 2001 From: Ruediger Pluem Date: Thu, 1 Sep 2011 06:30:02 +0000 Subject: [PATCH] * Fix error message git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1163918 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http/byterange_filter.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/http/byterange_filter.c b/modules/http/byterange_filter.c index 88b56e1a1b0..8936d24ce5f 100644 --- a/modules/http/byterange_filter.c +++ b/modules/http/byterange_filter.c @@ -640,7 +640,9 @@ static int ap_set_byterange(request_rec *r, apr_off_t clength, } else if (num_ranges == 0 && unsatisfiable) { /* If all ranges are unsatisfiable, we should return 416 */ - ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "0U"); + ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, + "All ranges in Range header (%s) are unsatisfiable", + it); return -1; } if (sum_lengths > clength) { -- 2.47.3