You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by co...@apache.org on 2002/02/28 23:45:50 UTC

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

costin      02/02/28 14:45:50

  Modified:    jk/native/apache-2.0 mod_jk.c
  Log:
  Avoid duplicated initialization
  
  Revision  Changes    Path
  1.40      +4 -3      jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c
  
  Index: mod_jk.c
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c,v
  retrieving revision 1.39
  retrieving revision 1.40
  diff -u -r1.39 -r1.40
  --- mod_jk.c	4 Dec 2001 21:38:26 -0000	1.39
  +++ mod_jk.c	28 Feb 2002 22:45:50 -0000	1.40
  @@ -60,7 +60,7 @@
    * Description: Apache 2 plugin for Jakarta/Tomcat                         *
    * Author:      Gal Shachor <sh...@il.ibm.com>                           *
    *                 Henri Gomez <hg...@slib.fr>                               *
  - * Version:     $Revision: 1.39 $                                           *
  + * Version:     $Revision: 1.40 $                                           *
    ***************************************************************************/
   
   /*
  @@ -682,8 +682,8 @@
    * JkAutoMount directive handling
    *
    * JkAutoMount worker [virtualhost]
  + * This is an experimental and undocumented extension made in j-t-c/jk.
    */
  -
   static const char *jk_automount_context(cmd_parms *cmd,
                                           void *dummy,
                                           const char *worker,
  @@ -731,6 +731,7 @@
   
   /*
    * JkWorker name value
  + * This is an experimental and undocumented extension made in j-t-c/jk.
    */
   static const char *jk_worker_property(cmd_parms *cmd,
                                         void *dummy,
  @@ -1473,7 +1474,7 @@
       jk_server_conf_t *conf =
           (jk_server_conf_t *)ap_get_module_config(s->module_config, &jk_module);
   
  -    init_jk( pconf, conf, s );
  +/*     init_jk( pconf, conf, s ); */
   }
   
   /** Initialize jk, using worker.properties. 
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>