hgomez      2002/12/16 00:54:56

  Modified:    jk/native/apache-1.3 mod_jk.c
  Log:
  Fix ifdef/idef
  
  Revision  Changes    Path
  1.33      +4 -4      jakarta-tomcat-connectors/jk/native/apache-1.3/mod_jk.c
  
  Index: mod_jk.c
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/apache-1.3/mod_jk.c,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -u -r1.32 -r1.33
  --- mod_jk.c  11 Dec 2002 10:40:38 -0000      1.32
  +++ mod_jk.c  16 Dec 2002 08:54:55 -0000      1.33
  @@ -735,7 +735,7 @@
       /* we need an absolut path */
       conf->worker_file = ap_server_root_relative(cmd->pool,worker_file);
   
  -#idef CHROOTED_APACHE
  +#ifdef CHROOTED_APACHE
       ap_server_strip_chroot(conf->worker_file,0);
   #endif
   
  @@ -768,7 +768,7 @@
       /* we need an absolut path */
       conf->log_file = ap_server_root_relative(cmd->pool,log_file);
   
  -#idef CHROOTED_APACHE
  +#ifdef CHROOTED_APACHE
       ap_server_strip_chroot(conf->log_file,0);
   #endif
   
  @@ -1752,7 +1752,7 @@
       /* Open up log file */
       if(conf->log_file && conf->log_level >= 0) {
           if(!jk_open_file_logger(&(conf->log), conf->log_file, conf->log_level)) {
  -#idef CHROOTED_APACHE
  +#ifdef CHROOTED_APACHE
               conf->log = main_log;
   #else
               conf->log = NULL;
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to