diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-08-22 19:19:10 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-08-24 08:04:20 -0400 |
| commit | db6ec9ff6e8e1641c586ce32b4422b6e0c896500 (patch) | |
| tree | df5219712a5eb0142b9fef1303efe1939a42c80b /eigrpd/eigrp_query.c | |
| parent | 3aea4e507bc6c129e1bdcfbaaefca6a829ee1825 (diff) | |
eigrpd: Remove union from FSM msg
Remove the union of passing the TLV and just pass the metric in.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'eigrpd/eigrp_query.c')
| -rw-r--r-- | eigrpd/eigrp_query.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eigrpd/eigrp_query.c b/eigrpd/eigrp_query.c index 92aa7f9855..4757097315 100644 --- a/eigrpd/eigrp_query.c +++ b/eigrpd/eigrp_query.c @@ -133,7 +133,7 @@ void eigrp_query_receive(struct eigrp *eigrp, struct ip *iph, msg.eigrp = eigrp; msg.data_type = EIGRP_INT; msg.adv_router = nbr; - msg.data.ipv4_int_type = tlv; + msg.metrics = tlv->metric; msg.entry = entry; msg.prefix = dest; eigrp_fsm_event(&msg); |
