0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-09-19 20:05:21 +00:00

Use ea_get_int instead of ea_find.

This commit is contained in:
Pavel Machek 2000-05-10 12:38:05 +00:00
parent c7e46aae66
commit 6f3849774f

View File

@ -768,8 +768,8 @@ rip_rt_notify(struct proto *p, struct network *net, struct rte *new, struct rte
e->metric = 0;
e->whotoldme = IPA_NONE;
e->tag = ea_find(attrs, EA_RIP_TAG)->u.data;
e->metric = ea_find(attrs, EA_RIP_METRIC)->u.data;
e->tag = ea_get_int(attrs, EA_RIP_TAG, 0);
e->metric = ea_get_int(attrs, EA_RIP_METRIC, 1);
if (e->metric > P_CF->infinity)
e->metric = P_CF->infinity;