diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2017-08-09 14:35:03 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2017-08-09 14:35:03 +0000 |
commit | 1843bd71d1bc8e533a9a09e403d34cbe7c875335 (patch) | |
tree | ff2ab67ca0afe1f33ff4253a1a8e50ddde4d4d9c /sys/netinet6/nd6.c | |
parent | bd4fe9edbe78f40178894caba98dba5cce21e04d (diff) |
accept_rtadv doesn't do anything since some time.
OK mpi
Diffstat (limited to 'sys/netinet6/nd6.c')
-rw-r--r-- | sys/netinet6/nd6.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet6/nd6.c b/sys/netinet6/nd6.c index a1a63e31d60..f94b4a99ae4 100644 --- a/sys/netinet6/nd6.c +++ b/sys/netinet6/nd6.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nd6.c,v 1.215 2017/08/09 14:34:05 florian Exp $ */ +/* $OpenBSD: nd6.c,v 1.216 2017/08/09 14:35:02 florian Exp $ */ /* $KAME: nd6.c,v 1.280 2002/06/08 19:52:07 itojun Exp $ */ /* @@ -138,7 +138,7 @@ nd6_ifattach(struct ifnet *ifp) nd->reachable = ND_COMPUTE_RTIME(nd->basereachable); nd->retrans = RETRANS_TIMER; /* per-interface IFXF_AUTOCONF6 needs to be set too to accept RAs */ - nd->flags = (ND6_IFF_PERFORMNUD | ND6_IFF_ACCEPT_RTADV); + nd->flags = ND6_IFF_PERFORMNUD; return nd; } |