diff options
author | wollman <wollman@FreeBSD.org> | 1995-10-13 19:48:06 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1995-10-13 19:48:06 +0000 |
commit | 234ef116d975fedba5bd998e69fa71d6a1c0542b (patch) | |
tree | ae4c80f82b68580a77b0dad688cad0327acd8765 /sys/dev/fe | |
parent | ad2a8dc42d82628e3758c1c5de0f70393ed2234d (diff) | |
download | FreeBSD-src-234ef116d975fedba5bd998e69fa71d6a1c0542b.zip FreeBSD-src-234ef116d975fedba5bd998e69fa71d6a1c0542b.tar.gz |
Say goodbye to IFF_NOTRAILERS. Support for trailers was officially
dropped for 4.4, but for some reason this flag lived on. (Until
today, that is.)
Diffstat (limited to 'sys/dev/fe')
-rw-r--r-- | sys/dev/fe/if_fe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/fe/if_fe.c b/sys/dev/fe/if_fe.c index cfab4c7..d6e9ca7 100644 --- a/sys/dev/fe/if_fe.c +++ b/sys/dev/fe/if_fe.c @@ -1070,7 +1070,7 @@ fe_attach ( struct isa_device *isa_dev ) /* * Set default interface flags. */ - sc->sc_if.if_flags = IFF_BROADCAST | IFF_NOTRAILERS | IFF_MULTICAST; + sc->sc_if.if_flags = IFF_BROADCAST | IFF_MULTICAST; /* * Set maximum size of output queue, if it has not been set. |