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();