diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2002-04-30 15:00:48 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2002-04-30 15:00:48 +0000 |
commit | c98047f62764eab650f7495e50d0e1d63d53ac88 (patch) | |
tree | 3f26e1884beacb4fe6042fe60ca2bd7e093c5f79 /otherlibs/win32unix/shutdown.c | |
parent | 044ac150e8b5763047b77757e9144a920fb49a42 (diff) |
Meilleure distinction handle/socket. Ajout lockf. Revu rename.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4765 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/win32unix/shutdown.c')
-rw-r--r-- | otherlibs/win32unix/shutdown.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/otherlibs/win32unix/shutdown.c b/otherlibs/win32unix/shutdown.c index 672877dd8..f3d2c6e03 100644 --- a/otherlibs/win32unix/shutdown.c +++ b/otherlibs/win32unix/shutdown.c @@ -15,7 +15,6 @@ #include <mlvalues.h> #include "unixsupport.h" -#include <winsock.h> static int shutdown_command_table[] = { 0, 1, 2 @@ -24,7 +23,7 @@ static int shutdown_command_table[] = { CAMLprim value unix_shutdown(sock, cmd) value sock, cmd; { - if (shutdown((SOCKET) Handle_val(sock), + if (shutdown(Socket_val(sock), shutdown_command_table[Int_val(cmd)]) == -1) { win32_maperr(WSAGetLastError()); uerror("shutdown", Nothing); |