mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-10 05:08:42 +00:00
Use ea_get_int instead of ea_find.
This commit is contained in:
parent
c7e46aae66
commit
6f3849774f
@ -768,8 +768,8 @@ rip_rt_notify(struct proto *p, struct network *net, struct rte *new, struct rte
|
|||||||
e->metric = 0;
|
e->metric = 0;
|
||||||
e->whotoldme = IPA_NONE;
|
e->whotoldme = IPA_NONE;
|
||||||
|
|
||||||
e->tag = ea_find(attrs, EA_RIP_TAG)->u.data;
|
e->tag = ea_get_int(attrs, EA_RIP_TAG, 0);
|
||||||
e->metric = ea_find(attrs, EA_RIP_METRIC)->u.data;
|
e->metric = ea_get_int(attrs, EA_RIP_METRIC, 1);
|
||||||
if (e->metric > P_CF->infinity)
|
if (e->metric > P_CF->infinity)
|
||||||
e->metric = P_CF->infinity;
|
e->metric = P_CF->infinity;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user