]> granicus.if.org Git - apache/commitdiff
Make prefork compile.
authorRyan Bloom <rbb@apache.org>
Tue, 14 Dec 1999 20:02:50 +0000 (20:02 +0000)
committerRyan Bloom <rbb@apache.org>
Tue, 14 Dec 1999 20:02:50 +0000 (20:02 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84292 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/prefork/prefork.c

index be8d85b6dca97537e940c226eec7e9f8f33fd71c..d2cd17a4d3a051cfa5512cb10c3ef92aa7d9d17d 100644 (file)
@@ -1954,7 +1954,11 @@ int ap_graceful_stop_signalled(void)
 
 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;