pier        01/07/18 12:19:26

  Modified:    webapp/lib pr_warp.c
  Log:
  Whops... Symbols for the WARP configurations are static.
  
  Revision  Changes    Path
  1.9       +5 -10     jakarta-tomcat-connectors/webapp/lib/pr_warp.c
  
  Index: pr_warp.c
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/webapp/lib/pr_warp.c,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- pr_warp.c 2001/07/18 19:12:38     1.8
  +++ pr_warp.c 2001/07/18 19:19:26     1.9
  @@ -54,18 +54,9 @@
    *                                                                           *
    * ========================================================================= */
   
  -/* @version $Id: pr_warp.c,v 1.8 2001/07/18 19:12:38 pier Exp $ */
  +/* @version $Id: pr_warp.c,v 1.9 2001/07/18 19:19:26 pier Exp $ */
   #include "pr_warp.h"
   
  -/* The list of all configured connections */
  -static wa_chain *warp_connections=NULL;
  -/* The list of all deployed connections */
  -static wa_chain *warp_applications=NULL;
  -
  -/* ************************************************************************* */
  -/* WEBAPP LIBRARY PROVIDER FUNCTIONS                                         */
  -/* ************************************************************************* */
  -
   /* Initialize this provider. */
   static const char *warp_init(void) {
       wa_debug(WA_MARK,"WARP provider initialized");
  @@ -199,6 +190,10 @@
       return(wa_rerror(WA_MARK,r,500,"Not yet implemented"));
   }
   
  +/* The list of all configured connections */
  +wa_chain *warp_connections=NULL;
  +/* The list of all deployed connections */
  +wa_chain *warp_applications=NULL;
   /* The warp provider structure */
   wa_provider wa_provider_warp = {
       "warp",
  
  
  

Reply via email to