mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
The #define to enum shutdown_how change for shutdown(2) has broken this build. Remove the overridden SD_BOTH and directly call SHUT_RDWR for now.
11 lines
235 B
C
11 lines
235 B
C
--- sim_sock.c.orig 2024-03-21 04:42:41 UTC
|
|
+++ sim_sock.c
|
|
@@ -1412,7 +1412,7 @@ void sim_close_sock (SOCKET sock)
|
|
|
|
void sim_close_sock (SOCKET sock)
|
|
{
|
|
-shutdown(sock, SD_BOTH);
|
|
+shutdown(sock, SHUT_RDWR);
|
|
closesocket (sock);
|
|
}
|
|
|