summaryrefslogtreecommitdiffstats
path: root/sys/kern/tty_pty.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1999-01-30 12:17:38 +0000
committerphk <phk@FreeBSD.org>1999-01-30 12:17:38 +0000
commit67f187760e45386080ca97c6bc73608f9fe52ae5 (patch)
tree640104e6ae29a9d3ec3b379eab1297863b5d84c5 /sys/kern/tty_pty.c
parent6c80ae4325fb5d1cab94603607c94d646aee0d8e (diff)
downloadFreeBSD-src-67f187760e45386080ca97c6bc73608f9fe52ae5.zip
FreeBSD-src-67f187760e45386080ca97c6bc73608f9fe52ae5.tar.gz
Use suser() to check for super user rather than examining cr_uid directly.
Use TTYDEF_SPEED rather than 9600 a couple of places. Reviewed by: bde, with a few grumbles.
Diffstat (limited to 'sys/kern/tty_pty.c')
-rw-r--r--sys/kern/tty_pty.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/tty_pty.c b/sys/kern/tty_pty.c
index 214f103..36afd3b 100644
--- a/sys/kern/tty_pty.c
+++ b/sys/kern/tty_pty.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)tty_pty.c 8.4 (Berkeley) 2/20/95
- * $Id: tty_pty.c,v 1.53 1998/07/15 12:18:30 bde Exp $
+ * $Id: tty_pty.c,v 1.54 1998/08/23 08:26:42 bde Exp $
*/
/*
@@ -183,7 +183,7 @@ ptsopen(dev, flag, devtype, p)
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 && p->p_ucred->cr_uid != 0)
+ } else if (tp->t_state & TS_XCLUDE && suser(p->p_ucred, &p->p_acflag))
return (EBUSY);
if (tp->t_oproc) /* Ctrlr still around. */
(void)(*linesw[tp->t_line].l_modem)(tp, 1);
OpenPOWER on IntegriCloud