You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2001/10/16 21:04:02 UTC

cvs commit: httpd-2.0/modules/mappers mod_so.c

wrowe       01/10/16 12:04:02

  Modified:    modules/mappers mod_so.c
  Log:
    LoadFile(s) required by modules before they loaded weren't executed until
    server initialization.  This patch assures all such loaded files occur as
    they are parsed.
  
  Submitted by:	John Sterling <st...@covalent.net>
  
  Revision  Changes    Path
  1.44      +1 -1      httpd-2.0/modules/mappers/mod_so.c
  
  Index: mod_so.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/mappers/mod_so.c,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -r1.43 -r1.44
  --- mod_so.c	2001/09/18 22:13:57	1.43
  +++ mod_so.c	2001/10/16 19:04:02	1.44
  @@ -337,7 +337,7 @@
   static const command_rec so_cmds[] = {
       AP_INIT_TAKE2("LoadModule", load_module, NULL, RSRC_CONF | EXEC_ON_READ,
         "a module name and the name of a shared object file to load it from"),
  -    AP_INIT_ITERATE("LoadFile", load_file, NULL, RSRC_CONF,
  +    AP_INIT_ITERATE("LoadFile", load_file, NULL, RSRC_CONF  | EXEC_ON_READ,
         "shared object file or library to load into the server at runtime"),
       { NULL }
   };