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

This commit is contained in:
Nick Mathewson 2014-04-02 21:11:45 -04:00
parent 24c4b56a39
commit d290e36576

View File

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