diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-10-29 14:28:35 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-10-29 14:28:35 +0000 |
commit | a1b36efe2ed7a25ce4f9cccebe0445be0837b4ce (patch) | |
tree | 9d3b594fa1138fe2df715be54537f4075a67eace /sys | |
parent | 813966b31e294e9b9676597492948d8918531d17 (diff) |
Kill a comment saying that rt_ifp may not be the same as ifp, that's no
longer true.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet6/nd6.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/netinet6/nd6.c b/sys/netinet6/nd6.c index ebbd68671b9..9ae16db1ee3 100644 --- a/sys/netinet6/nd6.c +++ b/sys/netinet6/nd6.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nd6.c,v 1.165 2015/10/28 12:45:44 jsg Exp $ */ +/* $OpenBSD: nd6.c,v 1.166 2015/10/29 14:28:34 mpi Exp $ */ /* $KAME: nd6.c,v 1.280 2002/06/08 19:52:07 itojun Exp $ */ /* @@ -565,9 +565,6 @@ nd6_purge(struct ifnet *ifp) /* * Nuke neighbor cache entries for the ifp. - * Note that rt->rt_ifp may not be the same as ifp, - * due to KAME goto ours hack. See RTM_RESOLVE case in - * nd6_rtrequest(), and ip6_input(). */ ln = llinfo_nd6.ln_next; while (ln && ln != &llinfo_nd6) { |