From b50206a9d2bc221bed91603289875834df22b58a Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Fri, 13 Jun 2008 02:07:17 +0000 Subject: [PATCH] ignore some errnos in hopes of building on windows again svn:r15178 --- src/or/reasons.c | 4 ++-- 1 file 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;