0
0
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:
Maria Matejka 2024-12-26 11:34:02 +01:00 committed by Ondřej Zajíček
parent 96ec6b42d2
commit a07f0b1e7d

View File

@ -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: