You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2010/04/09 18:46:42 UTC

svn commit: r932501 - /httpd/httpd/trunk/server/listen.c

Author: trawick
Date: Fri Apr  9 16:46:42 2010
New Revision: 932501

URL: http://svn.apache.org/viewvc?rev=932501&view=rev
Log:
make_sock() sets lr->listen on success, so no need to set
in the caller

Modified:
    httpd/httpd/trunk/server/listen.c

Modified: httpd/httpd/trunk/server/listen.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/listen.c?rev=932501&r1=932500&r2=932501&view=diff
==============================================================================
--- httpd/httpd/trunk/server/listen.c (original)
+++ httpd/httpd/trunk/server/listen.c Fri Apr  9 16:46:42 2010
@@ -437,7 +437,6 @@ static int open_listeners(apr_pool_t *po
 #endif
             if (make_sock(pool, lr) == APR_SUCCESS) {
                 ++num_open;
-                lr->active = 1;
             }
             else {
 #if APR_HAVE_IPV6