Author: hgomez Date: Tue Apr 24 06:47:23 2007 New Revision: 531939 URL: http://svn.apache.org/viewvc?view=rev&rev=531939 Log: Fix the sent_bodyct flag unset under i5/OS
Modified: tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c Modified: tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c?view=diff&rev=531939&r1=531938&r2=531939 ============================================================================== --- tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c (original) +++ tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c Tue Apr 24 06:47:23 2007 @@ -314,6 +314,11 @@ } } + /* under i5/OS this flag is not set correctly */ +#ifdef AS400 + r->sent_bodyct = 1; +#endif + /* this NOP function was removed in apache 2.0 alpha14 */ /* ap_send_http_header(r); */ p->response_started = JK_TRUE; --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]