summaryrefslogtreecommitdiff
path: root/src/network/core/udp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/network/core/udp.cpp')
-rw-r--r--src/network/core/udp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/core/udp.cpp b/src/network/core/udp.cpp
index 77a4c81ae..8035446c0 100644
--- a/src/network/core/udp.cpp
+++ b/src/network/core/udp.cpp
@@ -112,7 +112,7 @@ void NetworkUDPSocketHandler::ReceivePackets()
client_len = sizeof(client_addr);
/* Try to receive anything */
- SetNonBlocking(this->sock); // Some OSes seem to loose the non-blocking status of the socket
+ SetNonBlocking(this->sock); // Some OSes seem to lose the non-blocking status of the socket
nbytes = recvfrom(this->sock, (char*)p.buffer, packet_len, 0, (struct sockaddr *)&client_addr, &client_len);
/* We got some bytes for the base header of the packet. */