diff options
author | Pavel Machek <pavel@ucw.cz> | 2000-05-10 08:56:42 +0200 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 2000-05-10 08:56:42 +0200 |
commit | 4bfe4e8551722533cc99c776b3b70818ef59bf24 (patch) | |
tree | f84b9b62f902e54f4b0374fc83563efb53f5c511 /proto/rip | |
parent | c0100454cf37833d23fdb9d24412de659f683c12 (diff) | |
download | bird-4bfe4e8551722533cc99c776b3b70818ef59bf24.tar bird-4bfe4e8551722533cc99c776b3b70818ef59bf24.zip |
Fix segfaults by using new ea_get_int.
Diffstat (limited to 'proto/rip')
-rw-r--r-- | proto/rip/rip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proto/rip/rip.c b/proto/rip/rip.c index 326cf20..5c90a45 100644 --- a/proto/rip/rip.c +++ b/proto/rip/rip.c @@ -733,8 +733,8 @@ rip_store_tmp_attrs(struct rte *rt, struct ea_list *attrs) { struct proto *p = rt->attrs->proto; - rt->u.rip.tag = ea_find(attrs, EA_RIP_TAG)->u.data; - rt->u.rip.metric = ea_find(attrs, EA_RIP_METRIC)->u.data; + rt->u.rip.tag = ea_get_int(attrs, EA_RIP_TAG, 0); + rt->u.rip.metric = ea_get_int(attrs, EA_RIP_METRIC, 1); } static void |