emulators/open-simh: Unbreak on -CURRENT

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.
2024Q2
Kevin Bowling 2024-03-20 21:47:39 -07:00
parent d340d8ff32
commit e023cb750b
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
--- 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);
}