danmil      01/01/10 19:14:46

  Modified:    src/native/mod_jk/common jk_lb_worker.c
  Log:
  *Actually* fixing the bug in PR #603 -- the last commit fixed another bug (by 
accident)
  
  Revision  Changes    Path
  1.4       +2 -2      jakarta-tomcat/src/native/mod_jk/common/jk_lb_worker.c
  
  Index: jk_lb_worker.c
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/native/mod_jk/common/jk_lb_worker.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- jk_lb_worker.c    2001/01/11 03:10:30     1.3
  +++ jk_lb_worker.c    2001/01/11 03:14:45     1.4
  @@ -58,7 +58,7 @@
    *              several workers.                                           *
    * Author:      Gal Shachor <[EMAIL PROTECTED]>                           *
    * Based on:                                                               *
  - * Version:     $Revision: 1.3 $                                               *
  + * Version:     $Revision: 1.4 $                                               *
    ***************************************************************************/
   
   #include "jk_pool.h"
  @@ -166,7 +166,7 @@
                           char *id_end;
                           id_start = jk_pool_strdup(s->pool, id_start);
                           if(id_end = strchr(id_start, ';')) {
  -                            id_end = NULL;
  +                            *id_end = '\0';
                           }
                           return id_start;
                       }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to