Skip to content
Snippets Groups Projects
Commit 1e685bbc authored by Maria Matejka's avatar Maria Matejka
Browse files

Static: fixed ASPA reconfiguration


Due to an oversight, the provider lists weren't compared on reconfiguration.

Reported-By: default avatarRalph Covelli <rcovelli@he.net>
parent 96dc63d6
No related branches found
No related tags found
No related merge requests found
Pipeline #133817 passed
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment