summaryrefslogtreecommitdiff
path: root/modules/http
diff options
context:
space:
mode:
authorRuediger Pluem <rpluem@apache.org>2011-09-01 06:30:02 +0000
committerRuediger Pluem <rpluem@apache.org>2011-09-01 06:30:02 +0000
commitf3ac51aba05db7258b50a28fd6ac917935e1dd83 (patch)
tree5bfa9095b04d979909eb420e937ed513ad3bbbdc /modules/http
parent701c4d30355af20d0d956b8b110ef6e7883660c9 (diff)
downloadhttpd-f3ac51aba05db7258b50a28fd6ac917935e1dd83.tar.gz
* Fix error message
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1163918 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http')
-rw-r--r--modules/http/byterange_filter.c4
1 files changed, 3 insertions, 1 deletions
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) {