diff options
author | 2018-07-30 00:11:04 +0000 | |
---|---|---|
committer | 2018-07-30 00:11:04 +0000 | |
commit | 93768d176ed575687fc8543048b12cc31ffa86ea (patch) | |
tree | 23bbce748ea6c54254aff8b01cb1c945c70a687b | |
parent | revert accidentally changed prototype (diff) | |
download | wireguard-openbsd-93768d176ed575687fc8543048b12cc31ffa86ea.tar.xz wireguard-openbsd-93768d176ed575687fc8543048b12cc31ffa86ea.zip |
activate unveil for testing
ok kibbles and bits
-rw-r--r-- | sys/kern/vfs_syscalls.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/kern/vfs_syscalls.c b/sys/kern/vfs_syscalls.c index 768a5676736..b01a0c87468 100644 --- a/sys/kern/vfs_syscalls.c +++ b/sys/kern/vfs_syscalls.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_syscalls.c,v 1.296 2018/07/27 01:44:19 beck Exp $ */ +/* $OpenBSD: vfs_syscalls.c,v 1.297 2018/07/30 00:11:04 deraadt Exp $ */ /* $NetBSD: vfs_syscalls.c,v 1.71 1996/04/23 10:29:02 mycroft Exp $ */ /* @@ -913,9 +913,6 @@ sys_unveil(struct proc *p, void *v, register_t *retval) if (pathlen < 2) return EINVAL; - /* XXX unveil is disabled but returns sucess for now */ - return 0; - if (pathlen == 2 && pathname[0] == '/') NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF | SAVENAME, UIO_SYSSPACE, pathname, p); |