You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by "Ralf S. Engelschall" <rs...@apache.org> on 1998/03/09 12:35:43 UTC

cvs commit: apache-1.3/src/modules/standard mod_so.c

rse         98/03/09 03:35:42

  Modified:    src/modules/standard mod_so.c
  Log:
  Cosmetics and completion of module structure
  
  Revision  Changes    Path
  1.6       +5 -2      apache-1.3/src/modules/standard/mod_so.c
  
  Index: mod_so.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_so.c,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- mod_so.c	1998/02/24 10:30:54	1.5
  +++ mod_so.c	1998/03/09 11:35:42	1.6
  @@ -222,7 +222,7 @@
   	
       modp->dynamic_load_handle = modhandle;
   
  -    add_module (modp);
  +    add_module(modp);
   
       /* Register a cleanup in the config pool (normally pconf). When
        * we do a restart (or shutdown) this cleanup will cause the
  @@ -307,5 +307,8 @@
      NULL,			/* check access */
      NULL,			/* type_checker */
      NULL,			/* logger */
  -   NULL				/* header parser */
  +   NULL,			/* header parser */
  +   NULL,			/* child_init */
  +   NULL,			/* child_exit */
  +   NULL				/* post read-request */
   };