You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by hg...@apache.org on 2001/03/14 00:34:35 UTC

cvs commit: jakarta-tomcat/src/native/mod_jk/apache2.0 mod_jk.c

hgomez      01/03/13 15:34:34

  Modified:    src/native/mod_jk/apache2.0 mod_jk.c
  Log:
  Removed ap_send_http_header which was a NOP function in
  Apache 2.0 (headers are handled by filter) and which
  was removed since alpha 14
  
  Revision  Changes    Path
  1.9       +2 -1      jakarta-tomcat/src/native/mod_jk/apache2.0/mod_jk.c
  
  Index: mod_jk.c
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/native/mod_jk/apache2.0/mod_jk.c,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- mod_jk.c	2001/02/15 12:03:38	1.8
  +++ mod_jk.c	2001/03/13 23:34:33	1.9
  @@ -182,7 +182,8 @@
               }
           }
   
  -        ap_send_http_header(r);
  +        /* this NOP function was removed in apache 2.0 alpha14 */
  +        /* ap_send_http_header(r); */
           p->response_started = JK_TRUE;
           
           return JK_TRUE;
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, email: tomcat-dev-help@jakarta.apache.org