diff options
author | phk <phk@FreeBSD.org> | 1999-01-30 12:17:38 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1999-01-30 12:17:38 +0000 |
commit | 67f187760e45386080ca97c6bc73608f9fe52ae5 (patch) | |
tree | 640104e6ae29a9d3ec3b379eab1297863b5d84c5 /sys/dev/rp | |
parent | 6c80ae4325fb5d1cab94603607c94d646aee0d8e (diff) | |
download | FreeBSD-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/dev/rp')
-rw-r--r-- | sys/dev/rp/rp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/rp/rp.c b/sys/dev/rp/rp.c index 28acaee..3ac4ee9 100644 --- a/sys/dev/rp/rp.c +++ b/sys/dev/rp/rp.c @@ -1346,7 +1346,8 @@ open_top: goto open_top; } } - if(tp->t_state & TS_XCLUDE && p->p_ucred->cr_uid != 0) { + if(tp->t_state & TS_XCLUDE && + suser(p->p_ucred, &p->p_acflag)) { splx(oldspl); return(EBUSY); } |