]> granicus.if.org Git - apache/commitdiff
* Fix error message
authorRuediger Pluem <rpluem@apache.org>
Thu, 1 Sep 2011 06:30:02 +0000 (06:30 +0000)
committerRuediger Pluem <rpluem@apache.org>
Thu, 1 Sep 2011 06:30:02 +0000 (06:30 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1163918 13f79535-47bb-0310-9956-ffa450edef68

modules/http/byterange_filter.c

index 88b56e1a1b0145c6a1a6a389be87759346138fa5..8936d24ce5f28d849005c440132540de7eae933b 100644 (file)
@@ -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) {