1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-19 12:39:11 +00:00

(svn r14174) -Fix: since now, we are 'losing' things, not 'loosing'

This commit is contained in:
smatz
2008-08-25 20:10:45 +00:00
parent b60ff46806
commit c9bef19043
5 changed files with 5 additions and 5 deletions

View File

@@ -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. */