mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Loopback network interface driver (net/if_loop.c) has no SIOCSIFFLAGS
ioctl handler. PR: 6466 Reviewed by: phk Submitted by: Ruslan Ermilov <ru@ucb.crimea.ua>
This commit is contained in:
parent
4d99b63047
commit
ce42f1fb17
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=35563
1 changed files with 4 additions and 1 deletions
|
@ -31,7 +31,7 @@
|
|||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)if_loop.c 8.1 (Berkeley) 6/10/93
|
||||
* $Id: if_loop.c,v 1.29 1998/01/08 23:41:26 eivind Exp $
|
||||
* $Id: if_loop.c,v 1.30 1998/01/09 00:51:57 eivind Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
|
@ -289,6 +289,9 @@ loioctl(ifp, cmd, data)
|
|||
ifp->if_mtu = ifr->ifr_mtu;
|
||||
break;
|
||||
|
||||
case SIOCSIFFLAGS:
|
||||
break;
|
||||
|
||||
default:
|
||||
error = EINVAL;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue