You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Marc Slemko <ma...@hyperreal.com> on 1997/06/29 01:39:55 UTC

cvs commit: apache/src/modules/proxy mod_proxy.c

marc        97/06/28 16:39:55

  Modified:    src/modules/proxy  mod_proxy.c
  Log:
  Fix return type of initializer.
  
  Revision  Changes    Path
  1.14      +2 -4      apache/src/modules/proxy/mod_proxy.c
  
  Index: mod_proxy.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/modules/proxy/mod_proxy.c,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -C3 -r1.13 -r1.14
  *** mod_proxy.c	1997/06/15 19:22:47	1.13
  --- mod_proxy.c	1997/06/28 23:39:54	1.14
  ***************
  *** 179,190 ****
        else return OK; /* otherwise; we've done the best we can */
    }
    
  ! static int
    proxy_init(server_rec *r, pool *p)
    {
        proxy_garbage_init(r, p);
  - 
  -     return(0);
    } 
    
    
  --- 179,188 ----
        else return OK; /* otherwise; we've done the best we can */
    }
    
  ! void
    proxy_init(server_rec *r, pool *p)
    {
        proxy_garbage_init(r, p);
    } 
    
    
  ***************
  *** 544,550 ****
    
    module proxy_module = {
       STANDARD_MODULE_STUFF,
  !    proxy_init,                        /* initializer */
       NULL,                        /* create per-directory config structure */
       NULL,                        /* merge per-directory config structures */
       create_proxy_config,         /* create per-server config structure */
  --- 542,548 ----
    
    module proxy_module = {
       STANDARD_MODULE_STUFF,
  !    proxy_init,                  /* initializer */
       NULL,                        /* create per-directory config structure */
       NULL,                        /* merge per-directory config structures */
       create_proxy_config,         /* create per-server config structure */