rbb 99/12/14 12:02:52
Modified: src/modules/mpm/prefork prefork.c
Log:
Make prefork compile.
Revision Changes Path
1.59 +5 -1 apache-2.0/src/modules/mpm/prefork/prefork.c
Index: prefork.c
===================================================================
RCS file: /home/cvs/apache-2.0/src/modules/mpm/prefork/prefork.c,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- prefork.c 1999/12/03 22:11:31 1.58
+++ prefork.c 1999/12/14 20:02:50 1.59
@@ -1954,7 +1954,11 @@
static void child_main(int child_num_arg)
{
- NET_SIZE_T clen;
+/* XXX replace int with NET_SIZE_T, this is defined in ap_config.h which
+ has macros we can't make visible to this file, but it is the original
+ type for clen.
+*/
+ int clen;
struct sockaddr sa_server;
struct sockaddr sa_client;
ap_listen_rec *lr;