From 3d97a876691245c98ef1054d18f0ae8d6dd9e0a5 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 23 Mar 2009 13:08:17 +0000 Subject: [PATCH] ENOTCONN obviously doesn't exist in win32 so don't try to map that --- src/misc.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/misc.c b/src/misc.c index 445efcc9..4954a393 100644 --- a/src/misc.c +++ b/src/misc.c @@ -57,10 +57,6 @@ static int wsa2errno(void) case WSAENOTSOCK: return EBADF; - case WSAENOTCONN: - case WSAECONNABORTED: - return ENOTCONN; - case WSAEINTR: return EINTR;