From: Ruediger Pluem Date: Thu, 1 Sep 2011 06:30:02 +0000 (+0000) Subject: * Fix error message X-Git-Tag: 2.3.15~309 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f3ac51aba05db7258b50a28fd6ac917935e1dd83;p=apache * Fix error message git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1163918 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/byterange_filter.c b/modules/http/byterange_filter.c index 88b56e1a1b..8936d24ce5 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) {