aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Hay <jhay@FreeBSD.org>2006-09-30 14:08:57 +0000
committerJohn Hay <jhay@FreeBSD.org>2006-09-30 14:08:57 +0000
commitc482f11edb510b3f302ef91cd386f02e5a77e9c4 (patch)
tree0d9416cef2077ec0999629246d0443f164c180b7
parentbb79c11d8aca20d5ae198930c1591c94124f8fc4 (diff)
Notes
-rw-r--r--sys/netinet6/nd6.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet6/nd6.c b/sys/netinet6/nd6.c
index 4bad92e3f25a..b2e107802bae 100644
--- a/sys/netinet6/nd6.c
+++ b/sys/netinet6/nd6.c
@@ -1390,7 +1390,8 @@ nd6_rtrequest(req, rt, info)
ip6_sprintf(&llsol), error));
}
}
- } else if (req == RTM_ADD && SDL(gate)->sdl_alen == 0) {
+ } else if (req == RTM_ADD && SDL(gate)->sdl_alen == 0 &&
+ (ifp->if_flags & (IFF_POINTOPOINT | IFF_LOOPBACK)) == 0) {
ln->ln_state = ND6_LLINFO_INCOMPLETE;
}
break;