]> granicus.if.org Git - apache/commitdiff
Remove some shadowing
authorJim Jagielski <jim@apache.org>
Sat, 28 Aug 1999 13:31:36 +0000 (13:31 +0000)
committerJim Jagielski <jim@apache.org>
Sat, 28 Aug 1999 13:31:36 +0000 (13:31 +0000)
warnings. Avoid some possible confusion as well :)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83840 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/prefork/prefork.c

index 1b8114adedde66a8704fa37eb11098c7844b31f8..f9239dbc570b856faf7f04b05c513b77f2aee0e0 100644 (file)
@@ -2514,11 +2514,11 @@ static void process_child_status(int pid, ap_wait_t status)
 }
 
 
-static int setup_listeners(pool *pconf, server_rec *s)
+static int setup_listeners(pool *p, server_rec *s)
 {
     ap_listen_rec *lr;
 
-    if (ap_listen_open(pconf, s->port)) {
+    if (ap_listen_open(p, s->port)) {
        ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_ALERT, s,
                    "no listening sockets available, shutting down");
        return -1;
@@ -2752,7 +2752,7 @@ int ap_mpm_run(pool *_pconf, pool *plog, server_rec *s)
     return 0;
 }
 
-static void prefork_pre_config(pool *pconf, pool *plog, pool *ptemp)
+static void prefork_pre_config(pool *p, pool *plog, pool *ptemp)
 {
     static int restart_num = 0;