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/socket.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'otherlibs/win32unix/socket.c') diff --git a/otherlibs/win32unix/socket.c b/otherlibs/win32unix/socket.c index c07d76881..9423f5585 100644 --- a/otherlibs/win32unix/socket.c +++ b/otherlibs/win32unix/socket.c @@ -48,6 +48,9 @@ CAMLprim value unix_socket(domain, type, proto) setsockopt(INVALID_SOCKET, SOL_SOCKET, SO_OPENTYPE, (char *) &oldvalue, oldvaluelen); } - if (s == INVALID_SOCKET) unix_error(WSAGetLastError(), "socket", Nothing); + if (s == INVALID_SOCKET) { + win32_maperr(WSAGetLastError()); + uerror("socket", Nothing); + } return win_alloc_handle((HANDLE) s); } -- cgit v1.2.3-70-g09d2