diff options
author | Robert Nagy <robert@cvs.openbsd.org> | 2011-11-25 10:10:06 +0000 |
---|---|---|
committer | Robert Nagy <robert@cvs.openbsd.org> | 2011-11-25 10:10:06 +0000 |
commit | 640c0238a97ef9fda5670016f75ea096dbf1b849 (patch) | |
tree | e066331b9ed59788526bd5d56c18ca4755398928 /sys/compat/linux/linux_sysent.c | |
parent | 9bebd2307da31c6e9bb5a94af6180035be7dd61f (diff) |
implement chown(2) in compat_linux which is needed by some antivirus software
ok pirofti@
Diffstat (limited to 'sys/compat/linux/linux_sysent.c')
-rw-r--r-- | sys/compat/linux/linux_sysent.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/compat/linux/linux_sysent.c b/sys/compat/linux/linux_sysent.c index 74069eaf12e..60ca545ab9c 100644 --- a/sys/compat/linux/linux_sysent.c +++ b/sys/compat/linux/linux_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: linux_sysent.c,v 1.68 2011/09/19 22:49:57 pirofti Exp $ */ +/* $OpenBSD: linux_sysent.c,v 1.69 2011/11/25 10:10:05 robert Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.63 2011/09/19 14:33:14 pirofti Exp + * created from OpenBSD: syscalls.master,v 1.64 2011/09/19 22:49:37 pirofti Exp */ #include <sys/param.h> @@ -470,7 +470,7 @@ struct sysent linux_sysent[] = { sys_setresgid }, /* 210 = setresgid */ { 3, s(struct sys_getresgid_args), 0, sys_getresgid }, /* 211 = getresgid */ - { 0, 0, 0, + { 3, s(struct linux_sys_chown_args), 0, linux_sys_chown }, /* 212 = chown */ { 1, s(struct sys_setuid_args), 0, sys_setuid }, /* 213 = setuid */ |