diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2014-10-01 11:04:16 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2014-10-01 11:04:16 -0230 |
commit | 2836703a385239414b90461566c2126d5a0506b8 (patch) | |
tree | a4110ad2379f01e1ea4cae40e38f4f1308facba8 /cpp/src/Ice/Network.cpp | |
parent | Added missing ConnectionI::setCallback fix to JS (diff) | |
download | ice-2836703a385239414b90461566c2126d5a0506b8.tar.bz2 ice-2836703a385239414b90461566c2126d5a0506b8.tar.xz ice-2836703a385239414b90461566c2126d5a0506b8.zip |
ICE-5656 java test/Ice/exception eats all error messages
Diffstat (limited to 'cpp/src/Ice/Network.cpp')
-rw-r--r-- | cpp/src/Ice/Network.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Network.cpp b/cpp/src/Ice/Network.cpp index 0dd99cd5ae6..fd2f5220a3f 100644 --- a/cpp/src/Ice/Network.cpp +++ b/cpp/src/Ice/Network.cpp @@ -167,7 +167,7 @@ setTcpLoopbackFastPath(SOCKET fd) WSAIoctl(fd, SIO_LOOPBACK_FAST_PATH, &OptionValue, sizeof(OptionValue), NULL, 0, &NumberOfBytesReturned, 0, 0); if(status == SOCKET_ERROR) { - // On platforms that do not support fast path (< Windows 8), WSAEONOTSUPP is expected. + // On platforms that do not support fast path (< Windows 8), WSAEONOTSUPP is expected. DWORD LastError = ::GetLastError(); if(LastError != WSAEOPNOTSUPP) { |