diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-11-20 18:56:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-20 18:56:05 +0100 |
commit | 48049b8d9e3830ddea5c6844997d928871c16d27 (patch) | |
tree | 76787002fd429e99232af03b2c8d38674f4bdc62 /drivers | |
parent | 50eb039acfaa5f615223868d91c475b4bf70e125 (diff) | |
parent | a655de89e3abc14baff7a95deb85fe4daed7361c (diff) |
Merge pull request #43713 from akien-mga/doc-node-internal-processing
doc: Warn about using Node internal processing
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/unix/net_socket_posix.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/unix/net_socket_posix.cpp b/drivers/unix/net_socket_posix.cpp index 186804dbb1..0ee97256fc 100644 --- a/drivers/unix/net_socket_posix.cpp +++ b/drivers/unix/net_socket_posix.cpp @@ -348,11 +348,11 @@ Error NetSocketPosix::open(Type p_sock_type, IP::Type &ip_type) { // recv/recvfrom and an ICMP reply was received from a previous send/sendto. unsigned long disable = 0; if (ioctlsocket(_sock, SIO_UDP_CONNRESET, &disable) == SOCKET_ERROR) { - print_verbose("Unable to turn off UDP WSAECONNRESET behaviour on Windows"); + print_verbose("Unable to turn off UDP WSAECONNRESET behavior on Windows"); } if (ioctlsocket(_sock, SIO_UDP_NETRESET, &disable) == SOCKET_ERROR) { // This feature seems not to be supported on wine. - print_verbose("Unable to turn off UDP WSAENETRESET behaviour on Windows"); + print_verbose("Unable to turn off UDP WSAENETRESET behavior on Windows"); } } #endif |