diff options
author | Aleksandar Sasha Babic <aleksandar.babic@nokia.com> | 2009-08-19 08:59:30 (GMT) |
---|---|---|
committer | Aleksandar Sasha Babic <aleksandar.babic@nokia.com> | 2009-08-19 09:00:14 (GMT) |
commit | ac5bcbd221416ec28c9bcf82c6689f35b3a14f00 (patch) | |
tree | 9326226eb08cdd136fcc798ac84b994fa965b9f3 /src/network/socket | |
parent | e7b85ede7327c7ca928f07a211ed98bd3706567f (diff) | |
download | Qt-ac5bcbd221416ec28c9bcf82c6689f35b3a14f00.zip Qt-ac5bcbd221416ec28c9bcf82c6689f35b3a14f00.tar.gz Qt-ac5bcbd221416ec28c9bcf82c6689f35b3a14f00.tar.bz2 |
This was bug as EINPROGRESS and EAGAIN are not the same thing.
Diffstat (limited to 'src/network/socket')
-rw-r--r-- | src/network/socket/qlocalsocket_unix.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/network/socket/qlocalsocket_unix.cpp b/src/network/socket/qlocalsocket_unix.cpp index 2cf8ef6..9211d63 100644 --- a/src/network/socket/qlocalsocket_unix.cpp +++ b/src/network/socket/qlocalsocket_unix.cpp @@ -306,7 +306,6 @@ void QLocalSocketPrivate::_q_connectToSocket() case ETIMEDOUT: errorOccurred(QLocalSocket::SocketTimeoutError, function); break; - case EINPROGRESS: case EAGAIN: // Try again later, all of the sockets listening are full if (!delayConnect) { |