https://issues.apache.org/bugzilla/show_bug.cgi?id=43711





--- Comment #19 from Ruediger Pluem <[EMAIL PROTECTED]>  2008-05-16 07:58:22 
PST ---
Sounds reasonable. In this case the following patch should fix this:

Index: modules/http/http_filters.c
===================================================================
--- modules/http/http_filters.c (revision 656113)
+++ modules/http/http_filters.c (working copy)
@@ -323,7 +323,7 @@
             (ctx->state == BODY_LENGTH && ctx->remaining > 0)) &&
             f->r->expecting_100 && f->r->proto_num >= HTTP_VERSION(1,1) &&
             !(f->r->eos_sent || f->r->bytes_sent)) {
-            if (ap_is_HTTP_CLIENT_ERROR(f->r->status)) {
+            if (!ap_is_HTTP_SUCCESS(f->r->status)) {
                 ctx->state = BODY_NONE;
                 ctx->eos_sent = 1;
             } else {

Can someone try please?


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to