diff options
Diffstat (limited to 'tests/SOCK_Test.cpp')
-rw-r--r-- | tests/SOCK_Test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/SOCK_Test.cpp b/tests/SOCK_Test.cpp index 2196e34281c..fa5a3d5e966 100644 --- a/tests/SOCK_Test.cpp +++ b/tests/SOCK_Test.cpp @@ -161,7 +161,7 @@ server (void *arg) 0, 0, 0) == -1) ACE_ERROR_RETURN ((LM_ERROR, "(%P|%t) %p\n", "select"), 0); - while ((r_bytes = new_stream.recv_n (buf, 1)) > 0) + while ((r_bytes = new_stream.recv (buf, 1)) > 0) { ACE_ASSERT (t == buf[0]); t++; |