summaryrefslogtreecommitdiffstats
path: root/otherlibs/win32unix/connect.c
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2001-12-03 10:33:39 +0000
committerXavier Leroy <xavier.leroy@inria.fr>2001-12-03 10:33:39 +0000
commit5cc97f25b41fec5e0bd97fe45edff91562d68b66 (patch)
tree81fedf038b6dfc0112735c463298a5c0fd80aa96 /otherlibs/win32unix/connect.c
parente9ba5c43f3eb2fab159985d6babfc4a669512a16 (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/connect.c')
-rw-r--r--otherlibs/win32unix/connect.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/otherlibs/win32unix/connect.c b/otherlibs/win32unix/connect.c
index d921c0e84..a7fd2aeec 100644
--- a/otherlibs/win32unix/connect.c
+++ b/otherlibs/win32unix/connect.c
@@ -28,6 +28,9 @@ CAMLprim value unix_connect(socket, address)
enter_blocking_section();
retcode = connect(s, &addr.s_gen, addr_len);
leave_blocking_section();
- if (retcode == -1) unix_error(WSAGetLastError(), "connect", Nothing);
+ if (retcode == -1) {
+ win32_maperr(WSAGetLastError());
+ uerror("connect", Nothing);
+ }
return Val_unit;
}