Browse Source

ignore some errnos in hopes of building on windows again

svn:r15178
Roger Dingledine 16 years ago
parent
commit
b50206a9d2
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/or/reasons.c

+ 2 - 2
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;