summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2000-06-25 20:23:06 +0200
committerRyan Bloom <rbb@apache.org>2000-06-25 20:23:06 +0200
commit614f793a094e979dc4c4ff0321bbf29d65272cea (patch)
treeb4db3968749ba763efff1efaa77568efda908d56 /server
parentQuiet an unhelpful gcc warning which said that stat might be (diff)
downloadapache2-614f793a094e979dc4c4ff0321bbf29d65272cea.tar.xz
apache2-614f793a094e979dc4c4ff0321bbf29d65272cea.zip
Since we are initializing the status variable, use the error code
specially set aside for that purpose. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85690 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server')
-rw-r--r--server/mpm/prefork/prefork.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/mpm/prefork/prefork.c b/server/mpm/prefork/prefork.c
index 6cff0ec7b6..2c1a561168 100644
--- a/server/mpm/prefork/prefork.c
+++ b/server/mpm/prefork/prefork.c
@@ -760,7 +760,7 @@ static void child_main(int child_num_arg)
ap_pool_t *ptrans;
conn_rec *current_conn;
ap_iol *iol;
- ap_status_t stat = APR_SUCCESS;
+ ap_status_t stat = APR_EINIT;
int sockdes;
ap_my_pid = getpid();