From: Manoj Kasichainula Date: Thu, 7 Oct 1999 22:23:54 +0000 (+0000) Subject: Make prefork's setup_listeners looks like the others'. X-Git-Tag: 1.3.10~293 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1c73c43a490fde635d9801eed382d460afe855c8;p=apache Make prefork's setup_listeners looks like the others'. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83948 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/prefork/prefork.c b/server/mpm/prefork/prefork.c index 001283bd04..e628997bca 100644 --- a/server/mpm/prefork/prefork.c +++ b/server/mpm/prefork/prefork.c @@ -2530,7 +2530,7 @@ static void process_child_status(int pid, ap_wait_t status) } -static int setup_listeners(ap_context_t *p, server_rec *s) +static int setup_listeners(server_rec *s) { ap_listen_rec *lr; int sockdes; @@ -2568,7 +2568,7 @@ int ap_mpm_run(ap_context_t *_pconf, ap_context_t *plog, server_rec *s) ap_log_pid(pconf, ap_pid_fname); - if (setup_listeners(pconf, s)) { + if (setup_listeners(s)) { /* XXX: hey, what's the right way for the mpm to indicate a fatal error? */ return 1; }