ports/emulators/open-simh/files/patch-sim__sock.c
Kevin Bowling e023cb750b 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.
2024-03-20 21:47:39 -07:00

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);
}