mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Off-by-128 error in the cuam* device node numbers.
This commit is contained in:
parent
12f2edc7d5
commit
6be2f8829a
2 changed files with 2 additions and 2 deletions
|
|
@ -269,7 +269,7 @@ rcattach(dvp)
|
|||
rcb->rcb_unit);
|
||||
make_dev(&rc_cdevsw, chan + CD180_NCHAN * rcb->rcb_unit + 128,
|
||||
UID_UUCP, GID_DIALER, 0660, "cuam%d", chan + CD180_NCHAN *
|
||||
rcb->rcb_unit + 128);
|
||||
rcb->rcb_unit);
|
||||
}
|
||||
rcb->rcb_probed = RC_ATTACHED;
|
||||
if (!rc_started) {
|
||||
|
|
|
|||
|
|
@ -269,7 +269,7 @@ rcattach(dvp)
|
|||
rcb->rcb_unit);
|
||||
make_dev(&rc_cdevsw, chan + CD180_NCHAN * rcb->rcb_unit + 128,
|
||||
UID_UUCP, GID_DIALER, 0660, "cuam%d", chan + CD180_NCHAN *
|
||||
rcb->rcb_unit + 128);
|
||||
rcb->rcb_unit);
|
||||
}
|
||||
rcb->rcb_probed = RC_ATTACHED;
|
||||
if (!rc_started) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue