diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2000-10-25 22:01:03 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2000-10-25 22:01:03 +0000 |
commit | 93bbae8a7d0bb52b29f54aef671a1d9c6ddf4e3e (patch) | |
tree | 2cdf9f9d4187f76f13d45659f45f4de947cd0bed | |
parent | d2ddc5d2b2277baed86dbf8c7bf1d9d620bb4247 (diff) |
silence the "no multicast" warning for IFT_ENC, too
deraadt ok
-rw-r--r-- | sys/netinet6/in6_ifattach.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet6/in6_ifattach.c b/sys/netinet6/in6_ifattach.c index 5f5bffc8e5f..011ca6b9b61 100644 --- a/sys/netinet6/in6_ifattach.c +++ b/sys/netinet6/in6_ifattach.c @@ -1,4 +1,4 @@ -/* $OpenBSD: in6_ifattach.c,v 1.12 2000/10/18 18:49:39 itojun Exp $ */ +/* $OpenBSD: in6_ifattach.c,v 1.13 2000/10/25 22:01:02 jason Exp $ */ /* $KAME: in6_ifattach.c,v 1.68 2000/10/18 18:44:24 itojun Exp $ */ /* @@ -589,6 +589,7 @@ in6_ifattach(ifp, altifp) /* some of the interfaces are inherently not IPv6 capable */ switch (ifp->if_type) { case IFT_BRIDGE: + case IFT_ENC: return; case IFT_PROPVIRTUAL: if (strncmp("bridge", ifp->if_xname, sizeof("bridge")) == 0 && |