summaryrefslogtreecommitdiff
path: root/sys/compat/linux/common/linux_socketcall.c
diff options
context:
space:
mode:
authorsommerfe <sommerfe@NetBSD.org>1999-03-25 04:26:45 +0000
committersommerfe <sommerfe@NetBSD.org>1999-03-25 04:26:45 +0000
commit280a8428500331a447cf02210e70734e951b7f93 (patch)
treec2045f2286911e1d79bb198aad0f512947cf552d /sys/compat/linux/common/linux_socketcall.c
parentec6b2370d952a77e78dc5a4020974e1a2e854c2d (diff)
commit fix to PR7072: emulate linux non-blocking connect behavior more correctly
Diffstat (limited to 'sys/compat/linux/common/linux_socketcall.c')
-rw-r--r--sys/compat/linux/common/linux_socketcall.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/common/linux_socketcall.c b/sys/compat/linux/common/linux_socketcall.c
index 453bc4262b5..3fb489a2521 100644
--- a/sys/compat/linux/common/linux_socketcall.c
+++ b/sys/compat/linux/common/linux_socketcall.c
@@ -1,4 +1,4 @@
-/* $NetBSD: linux_socketcall.c,v 1.18 1998/10/04 00:02:44 fvdl Exp $ */
+/* $NetBSD: linux_socketcall.c,v 1.19 1999/03/25 04:26:45 sommerfe Exp $ */
/*-
* Copyright (c) 1995, 1998 The NetBSD Foundation, Inc.
@@ -130,7 +130,7 @@ linux_sys_socketcall(p, v, retval)
case LINUX_SYS_bind:
return sys_bind(p, (void *)&lda, retval);
case LINUX_SYS_connect:
- return sys_connect(p, (void *)&lda, retval);
+ return linux_sys_connect(p, (void *)&lda, retval);
case LINUX_SYS_listen:
return sys_listen(p, (void *)&lda, retval);
case LINUX_SYS_accept: