From 5cc97f25b41fec5e0bd97fe45edff91562d68b66 Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Mon, 3 Dec 2001 10:33:39 +0000 Subject: Mise au carre des appels unix_error git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4075 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02 --- otherlibs/win32unix/shutdown.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'otherlibs/win32unix/shutdown.c') diff --git a/otherlibs/win32unix/shutdown.c b/otherlibs/win32unix/shutdown.c index bf1e8c911..25373464e 100644 --- a/otherlibs/win32unix/shutdown.c +++ b/otherlibs/win32unix/shutdown.c @@ -24,7 +24,9 @@ CAMLprim value unix_shutdown(sock, cmd) value sock, cmd; { if (shutdown((SOCKET) Handle_val(sock), - shutdown_command_table[Int_val(cmd)]) == -1) - unix_error(WSAGetLastError(), "shutdown", Nothing); + shutdown_command_table[Int_val(cmd)]) == -1) { + win32_maperr(WSAGetLastError()); + uerror("shutdown", Nothing); + } return Val_unit; } -- cgit v1.2.3-70-g09d2