diff --git a/src/net.cpp b/src/net.cpp index e8422a537..23b40f975 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -9,6 +9,10 @@ #include "init.h" #include "strlcpy.h" +#ifdef __WXMSW__ +#include +#endif + #ifdef USE_UPNP #include #include @@ -148,7 +152,7 @@ bool ConnectSocket(const CAddress& addrConnect, SOCKET& hSocketRet, int nTimeout } if (nRet != 0) { - printf("connect() failed after select(): %i\n",nRet); + printf("connect() failed after select(): %s\n",strerror(nRet)); closesocket(hSocket); return false; }