Skip to content
Snippets Groups Projects
Commit d6e6eaba authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Fix windows compilation of e0c80315

There is no WSAEPERM; we were implying that there was.This fixes a
bug in e0c80315, which hadn't yet
appeared in any released Tor.
parent 91d4bb0b
No related branches found
No related tags found
No related merge requests found
......@@ -179,7 +179,7 @@ errno_to_stream_end_reason(int e)
S_CASE(ENETUNREACH):
S_CASE(EHOSTUNREACH):
E_CASE(EACCES):
E_CASE(EPERM):
case EPERM:
return END_STREAM_REASON_NOROUTE;
S_CASE(ECONNREFUSED):
return END_STREAM_REASON_CONNECTREFUSED;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment