Allow root to open prison pts devices too.

Pointed out by:	rwatson
This commit is contained in:
csjp 2006-01-31 22:19:37 +00:00
parent b8874ce616
commit a75160be2b

View File

@ -265,7 +265,7 @@ ptsopen(struct cdev *dev, int flag, int devtype, struct thread *td)
ttyinitmode(tp, 1, 0);
else if (tp->t_state & TS_XCLUDE && suser(td)) {
return (EBUSY);
} else if (pt->pt_prison != td->td_ucred->cr_prison) {
} else if (pt->pt_prison != td->td_ucred->cr_prison && suser(td)) {
return (EBUSY);
}
if (tp->t_oproc) /* Ctrlr still around. */