diff options
author | Roger Dingledine <arma@torproject.org> | 2008-06-13 02:07:17 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2008-06-13 02:07:17 +0000 |
commit | b50206a9d2bc221bed91603289875834df22b58a (patch) | |
tree | b6723ad7451a5ac3ade4fd5742edeef30f9496ae /src/or | |
parent | 001e2ac918a0cbab7d283e82d7b01c703874ae7b (diff) | |
download | tor-b50206a9d2bc221bed91603289875834df22b58a.tar tor-b50206a9d2bc221bed91603289875834df22b58a.tar.gz |
ignore some errnos in hopes of building on windows again
svn:r15178
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/reasons.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/reasons.c b/src/or/reasons.c index 7ce73bafd..e66838a5a 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; |