hgomez      01/07/02 05:34:28

  Modified:    jk/native/common jk_ajp14.c
  Log:
  Bad copy paste.
  When we want to have info about a context, send its name (only)
  Submitted by: JF-Clere
  
  Revision  Changes    Path
  1.11      +4 -4      jakarta-tomcat-connectors/jk/native/common/jk_ajp14.c
  
  Index: jk_ajp14.c
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_ajp14.c,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- jk_ajp14.c        2001/06/29 14:53:13     1.10
  +++ jk_ajp14.c        2001/07/02 12:34:26     1.11
  @@ -58,7 +58,7 @@
   /***************************************************************************
    * Description: Next generation bi-directional protocol handler.           *
    * Author:      Henri Gomez <[EMAIL PROTECTED]>                               *
  - * Version:     $Revision: 1.10 $                                           *
  + * Version:     $Revision: 1.11 $                                           *
    ***************************************************************************/
   
   
  @@ -521,7 +521,7 @@
           ci = context_find_base(c, cname);
   
           if (! ci) {
  -            jk_log(l, JK_LOG_ERROR, "Error ajp14_marshal_context_state_into_msgb - 
unknow context %s\n", cname);
  +            jk_log(l, JK_LOG_ERROR, "Warning ajp14_marshal_context_state_into_msgb 
- unknown context %s\n", cname);
               return JK_FALSE;
           }
   
  @@ -529,8 +529,8 @@
            * CONTEXT CSTRING
            */
   
  -        if (jk_b_append_string(msg, c->contexts[i]->cbase )) {
  -            jk_log(l, JK_LOG_ERROR, "Error ajp14_marshal_context_state_into_msgb - 
Error appending the context string\n");
  +        if (jk_b_append_string(msg, cname )) {
  +            jk_log(l, JK_LOG_ERROR, "Error ajp14_marshal_context_state_into_msgb - 
Error appending the context string %s\n", cname);
               return JK_FALSE;
           }
       }
  
  
  

Reply via email to