summaryrefslogtreecommitdiffstats
path: root/otherlibs/win32unix/accept.c
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>1996-09-05 13:32:25 +0000
committerXavier Leroy <xavier.leroy@inria.fr>1996-09-05 13:32:25 +0000
commit6ded697b42a2f40a96c774975e36e99897195aec (patch)
tree101febfe5774275c5392863fd93a004465e58bc0 /otherlibs/win32unix/accept.c
parentb973b44d9fa9e63d5504cc59e5078411b30efe03 (diff)
Premiere compilation.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@956 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/win32unix/accept.c')
-rw-r--r--otherlibs/win32unix/accept.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/otherlibs/win32unix/accept.c b/otherlibs/win32unix/accept.c
index 9d68b935f..21a07d710 100644
--- a/otherlibs/win32unix/accept.c
+++ b/otherlibs/win32unix/accept.c
@@ -34,10 +34,9 @@ value unix_accept(sock) /* ML */
(char *)&optionValue, sizeof(optionValue));
sock_addr_len = sizeof(sock_addr);
- h = _get_osfhandle(Int_val(sock));
- if (h == -1) uerror("accept", Nothing);
enter_blocking_section();
- s = accept(h, &sock_addr.s_gen, &sock_addr_len);
+ s = accept((SOCKET) _get_osfhandle(Int_val(sock)),
+ &sock_addr.s_gen, &sock_addr_len);
leave_blocking_section();
if (s == INVALID_SOCKET) {
_dosmaperr(WSAGetLastError());