diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2019-07-27 21:15:37 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2019-07-27 21:15:37 +0000 |
commit | e9a2313065c7bdc00d0dc9bc2a59333cc3c7854b (patch) | |
tree | 148164b1a7aae264d9b98c95a7523d974128f100 /sys/kern/vfs_lookup.c | |
parent | e2fd0288201d3008724bbfae1912afd749189611 (diff) |
Move unveil prototypes from vfs_lookup.c to namei.h for functions
implemented in kern_unveil.c.
OK deraadt@
Diffstat (limited to 'sys/kern/vfs_lookup.c')
-rw-r--r-- | sys/kern/vfs_lookup.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/kern/vfs_lookup.c b/sys/kern/vfs_lookup.c index 8f8ebdb35f9..59a78578e1b 100644 --- a/sys/kern/vfs_lookup.c +++ b/sys/kern/vfs_lookup.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_lookup.c,v 1.80 2019/07/18 18:06:17 kn Exp $ */ +/* $OpenBSD: vfs_lookup.c,v 1.81 2019/07/27 21:15:35 bluhm Exp $ */ /* $NetBSD: vfs_lookup.c,v 1.17 1996/02/09 19:00:59 christos Exp $ */ /* @@ -57,10 +57,6 @@ #include <sys/ktrace.h> #endif -void unveil_start_relative(struct proc *p, struct nameidata *ni); -void unveil_check_component(struct proc *p, struct nameidata *ni, struct vnode *dp ); -int unveil_check_final(struct proc *p, struct nameidata *ni); - int component_push(struct componentname *cnp, char *component, size_t len) { |