diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-10-28 18:45:08 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-10-28 18:45:08 -0400 |
| commit | 377f30c31fa07db75b316088bcd172d3e1182eaf (patch) | |
| tree | 48f1540bc7214b581df12d553461b947cb43b549 /eigrpd/eigrp_structs.h | |
| parent | 895722db4e7d09750006e6e17099b15b42a0470f (diff) | |
eigrpd: Fix an issue found with metric change
A past commit modified the change value to an enum
but did not bother to fix all the places where
change was used. Fix this.
Additionally add some more output to the fsm prefix
string about the change.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'eigrpd/eigrp_structs.h')
| -rw-r--r-- | eigrpd/eigrp_structs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/eigrpd/eigrp_structs.h b/eigrpd/eigrp_structs.h index 324181c21e..aae56c8ffe 100644 --- a/eigrpd/eigrp_structs.h +++ b/eigrpd/eigrp_structs.h @@ -499,6 +499,7 @@ struct eigrp_fsm_action_message { struct eigrp_prefix_entry *prefix; msg_data_t data_type; // internal or external tlv type struct eigrp_metrics metrics; + enum metric_change change; }; #endif /* _ZEBRA_EIGRP_STRUCTURES_H_ */ |
