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/06/01 11:49:57 UTC

cvs commit: jakarta-tomcat-connectors/jk/src/native/apache-2.0 mod_jk.c

hgomez      01/06/01 02:49:57

  Modified:    jk/src/native/apache-2.0 mod_jk.c
  Log:
  Correct the use of register_hooks in latest Apache 2.0
  
  Revision  Changes    Path
  1.4       +1 -1      jakarta-tomcat-connectors/jk/src/native/apache-2.0/mod_jk.c
  
  Index: mod_jk.c
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/src/native/apache-2.0/mod_jk.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- mod_jk.c	2001/05/21 15:20:28	1.3
  +++ mod_jk.c	2001/06/01 09:49:56	1.4
  @@ -1130,7 +1130,7 @@
       return DECLINED;
   }
   
  -static void jk_register_hooks(void)
  +static void jk_register_hooks(apr_pool_t *p)
   {
       ap_hook_handler(jk_handler, NULL, NULL, APR_HOOK_MIDDLE);
       ap_hook_post_config(jk_post_config,NULL,NULL,APR_HOOK_MIDDLE);