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/ie/if_ie.c | |
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/ie/if_ie.c')
-rw-r--r-- | sys/dev/ie/if_ie.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/dev/ie/if_ie.c b/sys/dev/ie/if_ie.c index c5d4d95..c0465e9 100644 --- a/sys/dev/ie/if_ie.c +++ b/sys/dev/ie/if_ie.c @@ -43,7 +43,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_ie.c,v 1.25 1995/08/16 16:12:32 bde Exp $ + * $Id: if_ie.c,v 1.26 1995/09/19 18:55:09 bde Exp $ */ /* @@ -576,9 +576,7 @@ ieattach(dvp) ie_softc[unit].hard_vers + 1, ether_sprintf(ie->arpcom.ac_enaddr)); - ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_NOTRAILERS; - ifp->if_flags |= IFF_MULTICAST; - + ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST; ifp->if_init = ieinit; ifp->if_output = ether_output; ifp->if_start = iestart; |