mirror of
https://github.com/opnsense/src.git
synced 2026-06-03 22:02:58 -04:00
A better fix is to check if it is a host route.
Submitted by: ume MFC after: 5 days
This commit is contained in:
parent
04876cf3eb
commit
584b68e792
1 changed files with 1 additions and 1 deletions
|
|
@ -1391,7 +1391,7 @@ nd6_rtrequest(req, rt, info)
|
|||
}
|
||||
}
|
||||
} else if (req == RTM_ADD && SDL(gate)->sdl_alen == 0 &&
|
||||
(ifp->if_flags & (IFF_POINTOPOINT | IFF_LOOPBACK)) == 0) {
|
||||
(rt->rt_flags & RTF_HOST) != 0) {
|
||||
ln->ln_state = ND6_LLINFO_INCOMPLETE;
|
||||
}
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in a new issue