mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Ok, first blunder: ioctls are not entirely unused on vnodes anymore :-)
Add dropped call to VOP_IOCTL().
This commit is contained in:
parent
ca8d7823c6
commit
18dc737317
1 changed files with 3 additions and 0 deletions
|
|
@ -776,6 +776,9 @@ vn_ioctl(fp, com, data, active_cred, td)
|
|||
}
|
||||
if (com == FIONBIO || com == FIOASYNC) /* XXX */
|
||||
error = 0;
|
||||
else
|
||||
error = VOP_IOCTL(vp, com, data, fp->f_flag,
|
||||
active_cred, td);
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
|
|||
Loading…
Reference in a new issue