Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 92228 invoked by uid 500); 4 Jan 2002 21:28:57 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 92217 invoked from network); 4 Jan 2002 21:28:57 -0000 Date: 4 Jan 2002 21:28:56 -0000 Message-ID: <20020104212856.10385.qmail@icarus.apache.org> From: bnicholes@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/network_io/win32 sockets.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N bnicholes 02/01/04 13:28:56 Modified: network_io/win32 sockets.c Log: Sorry, too many years of C++ Revision Changes Path 1.70 +2 -2 apr/network_io/win32/sockets.c Index: sockets.c =================================================================== RCS file: /home/cvs/apr/network_io/win32/sockets.c,v retrieving revision 1.69 retrieving revision 1.70 diff -u -r1.69 -r1.70 --- sockets.c 4 Jan 2002 17:25:49 -0000 1.69 +++ sockets.c 4 Jan 2002 21:28:56 -0000 1.70 @@ -230,8 +230,8 @@ struct sockaddr sa; int salen = sizeof(sock->remote_addr->sa); - // Don't allocate the memory until after we call accept. This allows - // us to work with nonblocking sockets. + /* Don't allocate the memory until after we call accept. This allows + us to work with nonblocking sockets. */ s = accept(sock->sock, (struct sockaddr *)&sa, &salen); if (s == INVALID_SOCKET) { return apr_get_netos_error();