[tor-commits] [tor/master] Try to make the win32 ersatz_socketpair pass.
nickm at torproject.org
nickm at torproject.org
Fri Aug 2 15:04:32 UTC 2013
commit 362f60e2d4dddb09c3b456732ac272b0e55374f0
Author: Nick Mathewson <nickm at torproject.org>
Date: Fri Aug 2 11:04:30 2013 -0400
Try to make the win32 ersatz_socketpair pass.
---
src/test/test_util.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/src/test/test_util.c b/src/test/test_util.c
index 213751e..05d28d7 100644
--- a/src/test/test_util.c
+++ b/src/test/test_util.c
@@ -3426,11 +3426,7 @@ test_util_socketpair(void *arg)
ersatz ? tor_ersatz_socketpair : tor_socketpair;
int n = get_n_open_sockets();
tor_socket_t fds[2] = {TOR_INVALID_SOCKET, TOR_INVALID_SOCKET};
-#ifdef _WIN32
- const int family = AF_INET;
-#else
const int family = AF_UNIX;
-#endif
tt_int_op(0, ==, tor_socketpair_fn(family, SOCK_STREAM, 0, fds));
tt_assert(SOCKET_OK(fds[0]));
More information about the tor-commits
mailing list