From 8e9d8c289c626522729c4d78e2db40ec72ff1237 Mon Sep 17 00:00:00 2001 From: dchagin Date: Mon, 1 Jun 2009 20:54:41 +0000 Subject: Add forgotten in previous commit flags argument. Approved by: kib (mentor) MFC after: 1 month --- sys/compat/linux/linux_socket.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/compat/linux/linux_socket.c') diff --git a/sys/compat/linux/linux_socket.c b/sys/compat/linux/linux_socket.c index cb7e0f8..45a1d53 100644 --- a/sys/compat/linux/linux_socket.c +++ b/sys/compat/linux/linux_socket.c @@ -765,7 +765,7 @@ linux_listen(struct thread *td, struct linux_listen_args *args) static int linux_accept_common(struct thread *td, int s, l_uintptr_t addr, - l_uintptr_t namelen) + l_uintptr_t namelen, int flags) { struct accept_args /* { int s; @@ -822,7 +822,7 @@ linux_accept(struct thread *td, struct linux_accept_args *args) { return (linux_accept_common(td, args->s, args->addr, - args->namelen)); + args->namelen, 0)); } struct linux_accept4_args { -- cgit v1.1