From: William A. Rowe Jr Date: Mon, 16 Jul 2001 18:14:51 +0000 (+0000) Subject: Fix for the new schema X-Git-Tag: 2.0.21~54 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e67ca3bc76f63681ea62e1e15dad7ec0cdde8fc2;p=apache Fix for the new schema git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89560 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/mpm_winnt.c b/server/mpm/winnt/mpm_winnt.c index e4b88c5748..a2f14253ed 100644 --- a/server/mpm/winnt/mpm_winnt.c +++ b/server/mpm/winnt/mpm_winnt.c @@ -898,7 +898,8 @@ static void worker_main(int thread_num) sockinfo.remote = context->sa_client; sockinfo.family = APR_INET; sockinfo.type = SOCK_STREAM; - apr_os_sock_make(&context->sock, &sockinfo, context->ptrans); + /* ### is this correct? Shouldn't be inheritable (at this point) */ + apr_os_sock_make(&context->sock, &sockinfo, APR_NO_INHERIT, context->ptrans); c = ap_new_connection(context->ptrans, server_conf, context->sock, thread_num);