mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-09 20:58:44 +00:00
Don't try to delete interface routes on CONFIG_AUTO_ROUTES systems.
This commit is contained in:
parent
6c02d83f4d
commit
3f2a21fd34
@ -178,7 +178,14 @@ krt_got_route(struct krt_proto *p, rte *e)
|
||||
if (old = net->routes)
|
||||
{
|
||||
if (!krt_capable(old))
|
||||
{
|
||||
#ifdef CONFIG_AUTO_ROUTES
|
||||
if (old->attrs->source == RTS_DEVICE)
|
||||
verdict = KRF_SEEN;
|
||||
else
|
||||
#endif
|
||||
verdict = krt_capable(e) ? KRF_DELETE : KRF_SEEN;
|
||||
}
|
||||
else if (krt_uptodate(e, net->routes))
|
||||
verdict = KRF_SEEN;
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user