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 2002/06/12 16:31:10 UTC

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

hgomez      2002/06/12 07:31:09

  Modified:    jk/native/apache-2.0 mod_jk.c
  Log:
  Fix the incorrect error reported when a worker is defined
  but didn't exist (reported by Bojan)
  
  Revision  Changes    Path
  1.45      +4 -1      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.44
  retrieving revision 1.45
  diff -u -r1.44 -r1.45
  --- mod_jk.c	8 May 2002 00:45:33 -0000	1.44
  +++ mod_jk.c	12 Jun 2002 14:31:09 -0000	1.45
  @@ -1324,6 +1324,9 @@
                   return OK;    /* NOT r->status, even if it has changed. */
               }
           }
  +	else
  +		return HTTP_INTERNAL_SERVER_ERROR;
  +
       }
   
       return DECLINED;
  
  
  

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