Commit bb9f1cd4 authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

  Fix for the new schema


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89560 13f79535-47bb-0310-9956-ffa450edef68
parent bec3cecf
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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);