summaryrefslogtreecommitdiffstats
path: root/sys/security/lomac/kernel_util.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/security/lomac/kernel_util.c')
-rw-r--r--sys/security/lomac/kernel_util.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/security/lomac/kernel_util.c b/sys/security/lomac/kernel_util.c
index 9a7a0ab..8a57a2b 100644
--- a/sys/security/lomac/kernel_util.c
+++ b/sys/security/lomac/kernel_util.c
@@ -383,7 +383,7 @@ unmount(td, uap)
*/
if (!mediate_subject_at_level("unmount", td->td_proc,
LOMAC_HIGHEST_LEVEL) ||
- ((mp->mnt_stat.f_owner != td->td_proc->p_ucred->cr_uid) &&
+ ((mp->mnt_stat.f_owner != td->td_ucred->cr_uid) &&
(error = suser_td(td)))) {
vput(vp);
return (error);
@@ -661,8 +661,7 @@ lomac_do_recwd(struct proc *p) {
if (vp->v_type != VDIR)
error = ENOTDIR;
else
- error = VOP_ACCESS(vp, VEXEC, td->td_proc->p_ucred,
- curthread);
+ error = VOP_ACCESS(vp, VEXEC, td->td_ucred, curthread);
if (error)
vput(vp);
else {
OpenPOWER on IntegriCloud