diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2001-12-03 10:33:39 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2001-12-03 10:33:39 +0000 |
commit | 5cc97f25b41fec5e0bd97fe45edff91562d68b66 (patch) | |
tree | 81fedf038b6dfc0112735c463298a5c0fd80aa96 /otherlibs/win32unix/accept.c | |
parent | e9ba5c43f3eb2fab159985d6babfc4a669512a16 (diff) |
Mise au carre des appels unix_error
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4075 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/win32unix/accept.c')
-rw-r--r-- | otherlibs/win32unix/accept.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/otherlibs/win32unix/accept.c b/otherlibs/win32unix/accept.c index e907a1d2b..ef2dd3400 100644 --- a/otherlibs/win32unix/accept.c +++ b/otherlibs/win32unix/accept.c @@ -46,8 +46,10 @@ CAMLprim value unix_accept(sock) setsockopt(INVALID_SOCKET, SOL_SOCKET, SO_OPENTYPE, (char *) &oldvalue, oldvaluelen); } - if (snew == INVALID_SOCKET) - unix_error(WSAGetLastError(), "accept", Nothing); + if (snew == INVALID_SOCKET) { + win32_maperr(WSAGetLastError()); + uerror("accept", Nothing); + } Begin_roots2 (fd, adr) fd = win_alloc_handle((HANDLE) snew); adr = alloc_sockaddr(&addr, addr_len); |