From: William A. Rowe Jr Date: Wed, 18 Jul 2001 17:14:09 +0000 (+0000) Subject: Omitted the arg X-Git-Tag: 2.0.21~41 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6f96a103051e4b96303d4fbd8b57eabdc891407e;p=apache Omitted the arg git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89594 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/listen.c b/server/listen.c index 0562f61339..c5b6ab6ce4 100644 --- a/server/listen.c +++ b/server/listen.c @@ -259,7 +259,7 @@ static void alloc_listener(process_rec *process, char *addr, apr_port_t port) "alloc_listener: failed to get a socket for %s", addr); return; } - apr_socket_set_inherit(); + apr_socket_set_inherit(new->sd); new->next = ap_listeners; ap_listeners = new; }