APACHE 1.3 STATUS: -*-text-*-
- Last modified at [$Date: 2004/03/29 18:18:00 $]
+ Last modified at [$Date: 2004/03/29 18:23:03 $]
Release:
http://www.apache.org/~trawick/13_custom_response_patch
+1: trawick, stoddard
- * byterange requests with configured ErrorDocuments return 206 instead
- of the error code like with 2.0. looks like some 2.0 logic needs to
- backported.
- http://marc.theaimsgroup.com/?l=apache-httpd-dev&m=107780510031395&w=2
- +1: geoff
-
* isn't ap_die() broken with recognizing recursive errors
Message-Id: <3F8C56E3.8050501@attglobal.net>
+1: jeff, jim
if (!(range = ap_table_get(r->headers_in, "Range")))
range = ap_table_get(r->headers_in, "Request-Range");
- if (!range || strncasecmp(range, "bytes=", 6)) {
+ if (!range || strncasecmp(range, "bytes=", 6) || (r->status != HTTP_OK)) {
return 0;
}
range += 6;