diff options
author | 2005-04-21 23:34:01 +0000 | |
---|---|---|
committer | 2005-04-21 23:34:01 +0000 | |
commit | 4622716ab8e2fc45fa34226a3e8278bb8c5d0e2d (patch) | |
tree | d876d5baab36da76d1f8d7647093648856eb7ebf | |
parent | careful strlcpy and snprintf return handling; ok pedro beck (diff) | |
download | wireguard-openbsd-4622716ab8e2fc45fa34226a3e8278bb8c5d0e2d.tar.xz wireguard-openbsd-4622716ab8e2fc45fa34226a3e8278bb8c5d0e2d.zip |
remove (now obsolete) handling of IFT_PROPVIRTUAL/bridge*. tested by camield@
-rw-r--r-- | sys/netinet6/in6_ifattach.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/netinet6/in6_ifattach.c b/sys/netinet6/in6_ifattach.c index 7d4b35ab0df..57709ad0267 100644 --- a/sys/netinet6/in6_ifattach.c +++ b/sys/netinet6/in6_ifattach.c @@ -1,4 +1,4 @@ -/* $OpenBSD: in6_ifattach.c,v 1.37 2004/12/07 20:38:47 mcbride Exp $ */ +/* $OpenBSD: in6_ifattach.c,v 1.38 2005/04/21 23:34:01 itojun Exp $ */ /* $KAME: in6_ifattach.c,v 1.124 2001/07/18 08:32:51 jinmei Exp $ */ /* @@ -579,12 +579,6 @@ in6_ifattach(ifp, altifp) case IFT_PFSYNC: case IFT_CARP: return; - case IFT_PROPVIRTUAL: - if (strncmp("bridge", ifp->if_xname, sizeof("bridge")) == 0 && - '0' <= ifp->if_xname[sizeof("bridge")] && - ifp->if_xname[sizeof("bridge")] <= '9') - return; - break; } /* |