From e67ca3bc76f63681ea62e1e15dad7ec0cdde8fc2 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Mon, 16 Jul 2001 18:14:51 +0000 Subject: [PATCH] Fix for the new schema git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89560 13f79535-47bb-0310-9956-ffa450edef68 --- server/mpm/winnt/mpm_winnt.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); -- 2.40.0