summaryrefslogtreecommitdiff
path: root/src/network/core/udp.cpp
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2008-08-25 20:10:45 +0000
committersmatz <smatz@openttd.org>2008-08-25 20:10:45 +0000
commitc9bef190436adff1b2b06410f80129171d2d9f49 (patch)
treec1e40a39dc5b512c170457b3ec39d1f8f78adc27 /src/network/core/udp.cpp
parentb60ff46806d6ec9398813beda2a0392e09ebacb4 (diff)
downloadopenttd-c9bef190436adff1b2b06410f80129171d2d9f49.tar.xz
(svn r14174) -Fix: since now, we are 'losing' things, not 'loosing'
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. */