diff options
author | John Baldwin <jhb@FreeBSD.org> | 2002-04-01 21:31:13 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2002-04-01 21:31:13 +0000 |
commit | 44731cab3b9966b7ca67f3fe50e7f3c711533730 (patch) | |
tree | 79021f0d43a5858be317d5cd33eac8cd4962b336 /sys/kern/vfs_subr.c | |
parent | a4a49508b4ddf1b482743f71bcd6707c9ce7b406 (diff) | |
download | src-44731cab3b9966b7ca67f3fe50e7f3c711533730.tar.gz src-44731cab3b9966b7ca67f3fe50e7f3c711533730.zip |
Notes
Diffstat (limited to 'sys/kern/vfs_subr.c')
-rw-r--r-- | sys/kern/vfs_subr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index e3290a12b5bd..7967b046bd9d 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -3217,7 +3217,7 @@ vaccess(type, file_mode, file_uid, file_gid, acc_mode, cred, privused) return (0); privcheck: - if (!suser_xxx(cred, NULL, PRISON_ROOT)) { + if (!suser_cred(cred, PRISON_ROOT)) { /* XXX audit: privilege used */ if (privused != NULL) *privused = 1; |