From: Nick Mathewson Date: Fri, 2 Aug 2013 15:04:30 +0000 (-0400) Subject: Try to make the win32 ersatz_socketpair pass. X-Git-Tag: tor-0.2.5.1-alpha~81 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=362f60e2d4dddb09c3b456732ac272b0e55374f0;p=thirdparty%2Ftor.git Try to make the win32 ersatz_socketpair pass. --- diff --git a/src/test/test_util.c b/src/test/test_util.c index 213751e5e7..05d28d7877 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]));