summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2002-01-04 21:28:56 +0000
committerbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2002-01-04 21:28:56 +0000
commit1bd43297be52aaf99a9801d29bd49bd1f73436c3 (patch)
tree15a605305066a2275af645458b87e167a1f2ae12
parentda779c5e72723b3dd02434854531229a65dc972f (diff)
downloadlibapr-1bd43297be52aaf99a9801d29bd49bd1f73436c3.tar.gz
Sorry, too many years of C++
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62703 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--network_io/win32/sockets.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/network_io/win32/sockets.c b/network_io/win32/sockets.c
index b9a3fc6ce..389eccd61 100644
--- a/network_io/win32/sockets.c
+++ b/network_io/win32/sockets.c
@@ -230,8 +230,8 @@ APR_DECLARE(apr_status_t) apr_accept(apr_socket_t **new, apr_socket_t *sock,
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();