summaryrefslogtreecommitdiffstats
path: root/sys/dev/ed
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/ed
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/ed')
-rw-r--r--sys/dev/ed/if_ed.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ed/if_ed.c b/sys/dev/ed/if_ed.c
index 8d086b9..3e9f325 100644
--- a/sys/dev/ed/if_ed.c
+++ b/sys/dev/ed/if_ed.c
@@ -13,7 +13,7 @@
* the SMC Elite Ultra (8216), the 3Com 3c503, the NE1000 and NE2000,
* and a variety of similar clones.
*
- * $Id: if_ed.c,v 1.76 1995/08/25 19:50:15 bde Exp $
+ * $Id: if_ed.c,v 1.77 1995/10/10 09:52:30 phk Exp $
*/
#include "ed.h"
@@ -1412,10 +1412,10 @@ ed_attach(isa_dev)
*/
if (isa_dev->id_flags & ED_FLAGS_DISABLE_TRANCEIVER)
ifp->if_flags = (IFF_BROADCAST | IFF_SIMPLEX |
- IFF_NOTRAILERS | IFF_MULTICAST | IFF_ALTPHYS);
+ IFF_MULTICAST | IFF_ALTPHYS);
else
ifp->if_flags = (IFF_BROADCAST | IFF_SIMPLEX |
- IFF_NOTRAILERS | IFF_MULTICAST);
+ IFF_MULTICAST);
/*
* Attach the interface
OpenPOWER on IntegriCloud