diff options
author | Aleksandar Sasha Babic <aleksandar.babic@nokia.com> | 2009-08-19 09:20:15 (GMT) |
---|---|---|
committer | Aleksandar Sasha Babic <aleksandar.babic@nokia.com> | 2009-08-19 09:20:42 (GMT) |
commit | b3a3652abbf1cb4ebba6c6257ecf47f8dc022d93 (patch) | |
tree | 61e7fdddd01e81d73d97f7673f017429482975b2 /src | |
parent | 29572e28a17ff569cd100936164abee6d527c9d8 (diff) | |
download | Qt-b3a3652abbf1cb4ebba6c6257ecf47f8dc022d93.zip Qt-b3a3652abbf1cb4ebba6c6257ecf47f8dc022d93.tar.gz Qt-b3a3652abbf1cb4ebba6c6257ecf47f8dc022d93.tar.bz2 |
Fixing the build break.
Diffstat (limited to 'src')
-rw-r--r-- | src/network/socket/qnativesocketengine_unix.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/socket/qnativesocketengine_unix.cpp b/src/network/socket/qnativesocketengine_unix.cpp index 1c77a37..4388382 100644 --- a/src/network/socket/qnativesocketengine_unix.cpp +++ b/src/network/socket/qnativesocketengine_unix.cpp @@ -610,7 +610,7 @@ qint64 QNativeSocketEnginePrivate::nativePendingDatagramSize() const // the data written to udpMessagePeekBuffer is discarded, so // this function is still reentrant although it might not look // so. - recvResult = qt_socket_recv(socketDescriptor, udpMessagePeekBuffer.data(), + recvResult = ::recv(socketDescriptor, udpMessagePeekBuffer.data(), udpMessagePeekBuffer.size(), MSG_PEEK); if (recvResult == -1 && errno == EINTR) continue; |