1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-19 10:53:58 +00:00

Add forgotten in previous commit flags argument.

Approved by:	kib (mentor)
MFC after:	1 month
This commit is contained in:
Dmitry Chagin 2009-06-01 20:54:41 +00:00
parent f8cd0af232
commit f83427b833
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=193265

View File

@ -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 {