summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2008-06-13 02:07:17 +0000
committerRoger Dingledine <arma@torproject.org>2008-06-13 02:07:17 +0000
commitb50206a9d2bc221bed91603289875834df22b58a (patch)
treeb6723ad7451a5ac3ade4fd5742edeef30f9496ae
parent001e2ac918a0cbab7d283e82d7b01c703874ae7b (diff)
downloadtor-b50206a9d2bc221bed91603289875834df22b58a.tar.gz
tor-b50206a9d2bc221bed91603289875834df22b58a.zip
ignore some errnos in hopes of building on windows again
svn:r15178
-rw-r--r--src/or/reasons.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/reasons.c b/src/or/reasons.c
index 7ce73bafd2..e66838a5a5 100644
--- a/src/or/reasons.c
+++ b/src/or/reasons.c
@@ -252,8 +252,8 @@ errno_to_orconn_end_reason(int e)
return END_OR_CONN_REASON_DONE;
S_CASE(ENOTCONN):
S_CASE(ENETUNREACH):
- case ENETDOWN: /* << somebody should look into the Windows equiv */
- case EHOSTUNREACH:
+// case ENETDOWN: /* << somebody should look into the Windows equiv */
+// case EHOSTUNREACH:
return END_OR_CONN_REASON_NO_ROUTE;
S_CASE(ECONNREFUSED):
return END_OR_CONN_REASON_REFUSED;