0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-10-18 09:58:43 +00:00

Static: Fixed undefined nexthop padding problems

This commit is contained in:
Maria Matejka 2024-05-22 08:56:37 +02:00 committed by Katerina Kubecova
parent b6e70f5ecf
commit 2357fc7d95

View File

@ -80,12 +80,10 @@ static_announce_rte(struct static_proto *p, struct static_route *r)
if (!r2->active)
continue;
*nh = (struct nexthop) {
.gw = r2->via,
.iface = r2->neigh->iface,
.flags = r2->onlink ? RNF_ONLINK : 0,
.weight = r2->weight,
};
nh->gw = r2->via;
nh->iface = r2->neigh->iface;
nh->flags = r2->onlink ? RNF_ONLINK : 0;
nh->weight = r2->weight;
if (r2->mls)
{