Browse Source

Fix make_socket_reusable() on windows. Bug not in any released Tor

Nick Mathewson 10 years ago
parent
commit
d290e36576
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/or/connection.c

+ 1 - 0
src/or/connection.c

@@ -965,6 +965,7 @@ make_socket_reuseable(tor_socket_t sock)
 {
 #ifdef _WIN32
   (void) sock;
+  return 0;
 #else
   int one=1;