mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2025-02-14 12:06:42 +00:00
Static: fixed ASPA reconfiguration
Due to an oversight, the provider lists weren't compared on reconfiguration. Reported-By: Ralph Covelli <rcovelli@he.net>
This commit is contained in:
parent
96ec6b42d2
commit
a07f0b1e7d
@ -373,6 +373,9 @@ static_same_dest(struct static_route *x, struct static_route *y)
|
||||
if (x->dest != y->dest)
|
||||
return 0;
|
||||
|
||||
if (x->net->type == NET_ASPA)
|
||||
return adata_same(x->aspa, y->aspa);
|
||||
|
||||
switch (x->dest)
|
||||
{
|
||||
case RTD_UNICAST:
|
||||
|
Loading…
x
Reference in New Issue
Block a user