rse 99/03/10 02:34:09
Modified: src CHANGES
src/main http_config.c
src/include http_config.h
Log:
Remove the no longer used non-API function ap_single_module_init() to make
some people happy who considers this as dead code since it's usage in mod_so
was removed.
Revision Changes Path
1.1269 +3 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.1268
retrieving revision 1.1269
diff -u -r1.1268 -r1.1269
--- CHANGES 1999/03/08 21:06:59 1.1268
+++ CHANGES 1999/03/10 10:34:00 1.1269
@@ -1,5 +1,8 @@
Changes with Apache 1.3.5
+ *) Remove no longer used non-API function ap_single_module_init().
+ [Ralf S. Engelschall]
+
*) Add Apple's Mac OS X Server Layout "Rhapsody" to config.layout.
[Wilfredo Sanchez]
1.143 +0 -8 apache-1.3/src/main/http_config.c
Index: http_config.c
===================================================================
RCS file: /home/cvs/apache-1.3/src/main/http_config.c,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -r1.142 -r1.143
--- http_config.c 1999/02/22 17:07:39 1.142
+++ http_config.c 1999/03/10 10:34:06 1.143
@@ -1492,14 +1492,6 @@
(*m->create_dir_config)(p, NULL));
}
-void ap_single_module_init(pool *p, server_rec *s, module *m)
-{
- if (m->init)
- (*m->init)(s, p);
- build_method_shortcuts();
- init_handlers(p);
-}
-
void ap_init_modules(pool *p, server_rec *s)
{
module *m;
1.101 +0 -1 apache-1.3/src/include/http_config.h
Index: http_config.h
===================================================================
RCS file: /home/cvs/apache-1.3/src/include/http_config.h,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- http_config.h 1999/01/06 19:14:51 1.100
+++ http_config.h 1999/03/10 10:34:08 1.101
@@ -344,7 +344,6 @@
/* For mod_so.c... */
void ap_single_module_configure(pool *p, server_rec *s, module *m);
-void ap_single_module_init(pool *p, server_rec *s, module *m);
/* For http_main.c... */