summaryrefslogtreecommitdiffstats
path: root/sys/kern/tty_pty.c
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2001-11-01 20:56:57 +0000
committerrwatson <rwatson@FreeBSD.org>2001-11-01 20:56:57 +0000
commitc532c3bf88b0296935bf9293accb407de43e240c (patch)
treed29ed0901454dffcc55e4c0606aef0cd915d84eb /sys/kern/tty_pty.c
parent49a98043879675541ed4fda938748b3b157c8479 (diff)
downloadFreeBSD-src-c532c3bf88b0296935bf9293accb407de43e240c.zip
FreeBSD-src-c532c3bf88b0296935bf9293accb407de43e240c.tar.gz
o Move suser() calls in kern/ to using suser_xxx() with an explicit
credential selection, rather than reference via a thread or process pointer. This is part of a gradual migration to suser() accepting a struct ucred instead of a struct proc, simplifying the reference and locking semantics of suser(). Obtained from: TrustedBSD Project
Diffstat (limited to 'sys/kern/tty_pty.c')
-rw-r--r--sys/kern/tty_pty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/tty_pty.c b/sys/kern/tty_pty.c
index a01d04e..7e00ec4 100644
--- a/sys/kern/tty_pty.c
+++ b/sys/kern/tty_pty.c
@@ -185,7 +185,7 @@ ptsopen(dev, flag, devtype, td)
tp->t_lflag = TTYDEF_LFLAG;
tp->t_cflag = TTYDEF_CFLAG;
tp->t_ispeed = tp->t_ospeed = TTYDEF_SPEED;
- } else if (tp->t_state & TS_XCLUDE && suser(p)) {
+ } else if (tp->t_state & TS_XCLUDE && suser_xxx(p->p_ucred, NULL, 0)) {
return (EBUSY);
} else if (pti->pt_prison != p->p_ucred->cr_prison) {
return (EBUSY);
OpenPOWER on IntegriCloud