From: Ryan Bloom Date: Tue, 14 Dec 1999 20:02:50 +0000 (+0000) Subject: Make prefork compile. X-Git-Tag: 1.3.10~95 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e0f0562f26ea59230ff7157ba027e9f62d1b2b7f;p=apache Make prefork compile. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84292 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/prefork/prefork.c b/server/mpm/prefork/prefork.c index be8d85b6dc..d2cd17a4d3 100644 --- a/server/mpm/prefork/prefork.c +++ b/server/mpm/prefork/prefork.c @@ -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;