mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Get rid of IFF_BROADCAST from default IFF_ slip options. This accidently
snuck in during the big -Wall commit and wasn't supposed to be in there.
This commit is contained in:
parent
a04dd7481b
commit
f7f62e7b56
1 changed files with 2 additions and 2 deletions
|
|
@ -31,7 +31,7 @@
|
|||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)if_sl.c 8.6 (Berkeley) 2/1/94
|
||||
* $Id: if_sl.c,v 1.71 1999/01/21 08:29:07 dillon Exp $
|
||||
* $Id: if_sl.c,v 1.72 1999/01/27 22:42:14 dillon Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
|
|
@ -222,7 +222,7 @@ slattach(dummy)
|
|||
#ifdef SLIP_IFF_OPTS
|
||||
SLIP_IFF_OPTS;
|
||||
#else
|
||||
IFF_BROADCAST | IFF_POINTOPOINT | SC_AUTOCOMP | IFF_MULTICAST;
|
||||
IFF_POINTOPOINT | SC_AUTOCOMP | IFF_MULTICAST;
|
||||
#endif
|
||||
sc->sc_if.if_type = IFT_SLIP;
|
||||
sc->sc_if.if_ioctl = slioctl;
|
||||
|
|
|
|||
Loading…
Reference in a new issue