summaryrefslogtreecommitdiffstats
path: root/otherlibs/win32unix/bind.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/win32unix/bind.c')
-rw-r--r--otherlibs/win32unix/bind.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/otherlibs/win32unix/bind.c b/otherlibs/win32unix/bind.c
index b1b23f816..6434fac67 100644
--- a/otherlibs/win32unix/bind.c
+++ b/otherlibs/win32unix/bind.c
@@ -25,6 +25,9 @@ CAMLprim value unix_bind(socket, address)
get_sockaddr(address, &addr, &addr_len);
ret = bind((SOCKET) Handle_val(socket), &addr.s_gen, addr_len);
- if (ret == -1) unix_error(WSAGetLastError(), "bind", Nothing);
+ if (ret == -1) {
+ win32_maperr(WSAGetLastError());
+ uerror("bind", Nothing);
+ }
return Val_unit;
}