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





--- Comment #18 from Christian Liesch <[EMAIL PROTECTED]>  2008-05-16 06:31:30 
PST ---
<snip>
+            if (ap_is_HTTP_CLIENT_ERROR(f->r->status)) {
+                ctx->state = BODY_NONE;
+                ctx->eos_sent = 1;
+            } else {
</snap>
>From the include/httpd.h:
#define ap_is_HTTP_CLIENT_ERROR(x) (((x) >= 400)&&((x) < 500))

The patch does look if there is an error - 307 is not - in that case it will
not send a 100 cont. So you will still have the 100 cont problem with this
patch for an 307 status code. The patch should not do an 100 cont if != 2xx I
think.


-- 
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