summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Pfatschbacher <mpf@cvs.openbsd.org>2005-05-23 20:10:15 +0000
committerMarco Pfatschbacher <mpf@cvs.openbsd.org>2005-05-23 20:10:15 +0000
commit99124a8921c8171be1600365fa8373e54b7cb6ac (patch)
tree3302daebd929790dfba95afde3ecc283d2d2cf29
parenta82036c201b4206a70fe7b9753d66e78e0423fe8 (diff)
carp needs a multicast kludge storage.
Fixes PR 4211. OK mcbride@
-rw-r--r--sys/netinet6/in6_ifattach.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet6/in6_ifattach.c b/sys/netinet6/in6_ifattach.c
index 57709ad0267..542b35e8de2 100644
--- a/sys/netinet6/in6_ifattach.c
+++ b/sys/netinet6/in6_ifattach.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: in6_ifattach.c,v 1.38 2005/04/21 23:34:01 itojun Exp $ */
+/* $OpenBSD: in6_ifattach.c,v 1.39 2005/05/23 20:10:14 mpf Exp $ */
/* $KAME: in6_ifattach.c,v 1.124 2001/07/18 08:32:51 jinmei Exp $ */
/*
@@ -577,7 +577,6 @@ in6_ifattach(ifp, altifp)
case IFT_ENC:
case IFT_PFLOG:
case IFT_PFSYNC:
- case IFT_CARP:
return;
}
@@ -600,6 +599,8 @@ in6_ifattach(ifp, altifp)
* quirks based on interface type
*/
switch (ifp->if_type) {
+ case IFT_CARP:
+ return;
default:
break;
}