summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2018-07-30 15:19:12 +0000
committerderaadt <deraadt@openbsd.org>2018-07-30 15:19:12 +0000
commitd7ab1b1938f17d72268e0fa53862b4c1bcab28eb (patch)
tree5c05d7dfcbb92d35eb4c3cb0e791e63d965fbf94
parentrename 2nd argument of unveil from vague "flags" to "permissions"; (diff)
downloadwireguard-openbsd-d7ab1b1938f17d72268e0fa53862b4c1bcab28eb.tar.xz
wireguard-openbsd-d7ab1b1938f17d72268e0fa53862b4c1bcab28eb.zip
sync
-rw-r--r--sys/kern/init_sysent.c4
-rw-r--r--sys/kern/syscalls.c4
-rw-r--r--sys/sys/syscall.h4
-rw-r--r--sys/sys/syscallargs.h6
4 files changed, 9 insertions, 9 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c
index dcb26836061..c3cd111f1f3 100644
--- a/sys/kern/init_sysent.c
+++ b/sys/kern/init_sysent.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: init_sysent.c,v 1.197 2018/07/13 09:25:23 beck Exp $ */
+/* $OpenBSD: init_sysent.c,v 1.198 2018/07/30 15:19:12 deraadt Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.185 2018/07/05 15:31:04 mpi Exp
+ * created from; OpenBSD: syscalls.master,v 1.187 2018/07/30 15:16:27 deraadt Exp
*/
#include <sys/param.h>
diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c
index 174cfbd20a8..0b7e3177e43 100644
--- a/sys/kern/syscalls.c
+++ b/sys/kern/syscalls.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscalls.c,v 1.196 2018/07/13 09:25:23 beck Exp $ */
+/* $OpenBSD: syscalls.c,v 1.197 2018/07/30 15:19:12 deraadt Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.185 2018/07/05 15:31:04 mpi Exp
+ * created from; OpenBSD: syscalls.master,v 1.187 2018/07/30 15:16:27 deraadt Exp
*/
char *syscallnames[] = {
diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h
index b6e0feff8cf..afb699e8f60 100644
--- a/sys/sys/syscall.h
+++ b/sys/sys/syscall.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscall.h,v 1.196 2018/07/13 09:25:23 beck Exp $ */
+/* $OpenBSD: syscall.h,v 1.197 2018/07/30 15:19:12 deraadt Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.185 2018/07/05 15:31:04 mpi Exp
+ * created from; OpenBSD: syscalls.master,v 1.187 2018/07/30 15:16:27 deraadt Exp
*/
/* syscall: "syscall" ret: "int" args: "int" "..." */
diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h
index ca0d5f4d311..9b9c0f2b01b 100644
--- a/sys/sys/syscallargs.h
+++ b/sys/sys/syscallargs.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscallargs.h,v 1.199 2018/07/13 09:25:23 beck Exp $ */
+/* $OpenBSD: syscallargs.h,v 1.200 2018/07/30 15:19:12 deraadt Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.185 2018/07/05 15:31:04 mpi Exp
+ * created from; OpenBSD: syscalls.master,v 1.187 2018/07/30 15:16:27 deraadt Exp
*/
#ifdef syscallarg
@@ -570,7 +570,7 @@ struct sys_sendsyslog_args {
struct sys_unveil_args {
syscallarg(const char *) path;
- syscallarg(const char *) flags;
+ syscallarg(const char *) permissions;
};
struct sys_getsockopt_args {