summaryrefslogtreecommitdiffstats
path: root/sys/dev/ep
diff options
context:
space:
mode:
authorwollman <wollman@FreeBSD.org>1995-10-13 19:48:06 +0000
committerwollman <wollman@FreeBSD.org>1995-10-13 19:48:06 +0000
commit234ef116d975fedba5bd998e69fa71d6a1c0542b (patch)
treeae4c80f82b68580a77b0dad688cad0327acd8765 /sys/dev/ep
parentad2a8dc42d82628e3758c1c5de0f70393ed2234d (diff)
downloadFreeBSD-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/ep')
-rw-r--r--sys/dev/ep/if_ep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ep/if_ep.c b/sys/dev/ep/if_ep.c
index bd38253..6c940ff 100644
--- a/sys/dev/ep/if_ep.c
+++ b/sys/dev/ep/if_ep.c
@@ -38,7 +38,7 @@
*/
/*
- * $Id: if_ep.c,v 1.29 1995/07/05 07:21:34 davidg Exp $
+ * $Id: if_ep.c,v 1.30 1995/08/28 12:01:17 guido Exp $
*
* Promiscuous mode added and interrupt logic slightly changed
* to reduce the number of adapter failures. Transceiver select
@@ -423,7 +423,7 @@ epattach(is)
ifp->if_unit = is->id_unit;
ifp->if_name = "ep";
ifp->if_mtu = ETHERMTU;
- ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_NOTRAILERS;
+ ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX;
ifp->if_init = epinit;
ifp->if_output = ether_output;
ifp->if_start = epstart;
OpenPOWER on IntegriCloud