]> granicus.if.org Git - apache/commitdiff
Fix for the new schema
authorWilliam A. Rowe Jr <wrowe@apache.org>
Mon, 16 Jul 2001 18:14:51 +0000 (18:14 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Mon, 16 Jul 2001 18:14:51 +0000 (18:14 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89560 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/winnt/mpm_winnt.c

index e4b88c5748808e24e7103ac1769ae6f877997ab3..a2f14253ed17ba65c6304e19ca011adeeb460487 100644 (file)
@@ -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);