diff options
author | 2011-11-25 10:10:05 +0000 | |
---|---|---|
committer | 2011-11-25 10:10:05 +0000 | |
commit | e855b5f10a590cc8c672b5ce621c7bd733cf143d (patch) | |
tree | 3167c4b130a70ee1e186b730d8433096794fdbf9 /sys/compat/linux/linux_syscall.h | |
parent | describe fixed behavior a little better (diff) | |
download | wireguard-openbsd-e855b5f10a590cc8c672b5ce621c7bd733cf143d.tar.xz wireguard-openbsd-e855b5f10a590cc8c672b5ce621c7bd733cf143d.zip |
implement chown(2) in compat_linux which is needed by some antivirus software
ok pirofti@
Diffstat (limited to 'sys/compat/linux/linux_syscall.h')
-rw-r--r-- | sys/compat/linux/linux_syscall.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/compat/linux/linux_syscall.h b/sys/compat/linux/linux_syscall.h index fc8c1fb91f9..d36ea46fdc9 100644 --- a/sys/compat/linux/linux_syscall.h +++ b/sys/compat/linux/linux_syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: linux_syscall.h,v 1.67 2011/09/19 22:49:57 pirofti Exp $ */ +/* $OpenBSD: linux_syscall.h,v 1.68 2011/11/25 10:10:05 robert Exp $ */ /* * System call numbers. * * 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 */ /* syscall: "syscall" ret: "int" args: */ @@ -652,7 +652,7 @@ /* syscall: "getresgid" ret: "int" args: "gid_t *" "gid_t *" "gid_t *" */ #define LINUX_SYS_getresgid 211 -/* syscall: "chown" ret: "int" args: */ +/* syscall: "chown" ret: "int" args: "char *" "uid_t" "gid_t" */ #define LINUX_SYS_chown 212 /* syscall: "setuid" ret: "int" args: "uid_t" */ |