dougm 97/09/12 14:40:13
Modified: src CHANGES
src/main http_main.c
Log:
go back to old behavior of calling init_modules() twice at server startup
Submitted by: Doug MacEachern
Reviewed by: Dean Gaudet
Revision Changes Path
1.439 +0 -2 apachen/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apachen/src/CHANGES,v
retrieving revision 1.438
retrieving revision 1.439
diff -u -r1.438 -r1.439
--- CHANGES 1997/09/12 20:38:43 1.438
+++ CHANGES 1997/09/12 21:40:04 1.439
@@ -173,8 +173,6 @@
*) init_modules is now called after the error logs have been opened. This
allows modules to emit information messages into the error logs.
- init_modules is only called once in standalone config now, previously
- it was called twice (once after each config file reading).
[Dean Gaudet]
*) Fixed proxy-pass-through feature of mod_rewrite; Added error logging
1.220 +1 -0 apachen/src/main/http_main.c
Index: http_main.c
===================================================================
RCS file: /export/home/cvs/apachen/src/main/http_main.c,v
retrieving revision 1.219
retrieving revision 1.220
diff -u -r1.219 -r1.220
--- http_main.c 1997/09/12 20:37:34 1.219
+++ http_main.c 1997/09/12 21:40:09 1.220
@@ -3543,6 +3543,7 @@
suexec_enabled = init_suexec();
server_conf = read_config (pconf, ptrans, server_confname);
+ init_modules (pconf, server_conf);
if(standalone) {
clear_pool (pconf); /* standalone_main rereads... */