dgaudet 97/07/13 19:32:11
Modified: src http_request.c
Log:
Deal with chunking when a DONE is returned.
Submitted by: Rob Hartill
Reviewed by: Jim Jagielski, Randy Terbush
Revision Changes Path
1.61 +5 -2 apache/src/http_request.c
Index: http_request.c
===================================================================
RCS file: /export/home/cvs/apache/src/http_request.c,v
retrieving revision 1.60
retrieving revision 1.61
diff -C3 -r1.60 -r1.61
*** http_request.c 1997/07/13 19:01:13 1.60
--- http_request.c 1997/07/14 02:32:10 1.61
***************
*** 788,795 ****
char *custom_response = response_code_string(r, error_index);
int recursive_error = 0;
! if (type == DONE) return;
!
/* The following takes care of Apache redirects to custom response URLs
* Note that if we are already dealing with the response to some other
* error condition, we just report on the original error, and give up on
--- 788,798 ----
char *custom_response = response_code_string(r, error_index);
int recursive_error = 0;
! if (type == DONE) {
! finalize_request_protocol(r);
! return;
! }
!
/* The following takes care of Apache redirects to custom response URLs
* Note that if we are already dealing with the response to some other
* error condition, we just report on the original error, and give up on