aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2012-09-05 22:20:26 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2012-09-05 22:20:26 +0200
commit4bd34b4966f59ce109406754eae7a6fd473837b6 (patch)
tree2635c507654572e629fc980786b7d6459c4feb0b
parent8788221761afc2c2990da746d9a6c444ff869684 (diff)
downloadbitcoin-4bd34b4966f59ce109406754eae7a6fd473837b6.tar.xz
replace 2x WSAGetLastError() with 1x WSAGetLastError() call
-rw-r--r--src/net.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/net.cpp b/src/net.cpp
index 76e44a6cf8..11bade6bbd 100644
--- a/src/net.cpp
+++ b/src/net.cpp
@@ -823,8 +823,9 @@ void ThreadSocketHandler2(void* parg)
if (hSocket == INVALID_SOCKET)
{
- if (WSAGetLastError() != WSAEWOULDBLOCK)
- printf("socket error accept failed: %d\n", WSAGetLastError());
+ int nErr = WSAGetLastError();
+ if (nErr != WSAEWOULDBLOCK)
+ printf("socket error accept failed: %d\n", nErr);
}
else if (nInbound >= GetArg("-maxconnections", 125) - MAX_OUTBOUND_CONNECTIONS)
{