summaryrefslogtreecommitdiff
path: root/eigrpd/eigrp_siareply.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2017-08-22 16:19:23 -0400
committerDonald Sharp <sharpd@cumulusnetworks.com>2017-08-24 08:04:20 -0400
commit7cfa4322558c56b5a0801b17e60598c5a49779dd (patch)
tree3f1a3167603a4cfccedc39f8274c741a9295f866 /eigrpd/eigrp_siareply.c
parent6118272f14f91ad4b315c6cd1ad13f4aa8e77a2d (diff)
eigrpd: make fsm msg data_type an enum
We need to eventually be able to handle multiple data types to figure out if the distance is better worse. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'eigrpd/eigrp_siareply.c')
-rw-r--r--eigrpd/eigrp_siareply.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eigrpd/eigrp_siareply.c b/eigrpd/eigrp_siareply.c
index 2cf7520a96..e960940200 100644
--- a/eigrpd/eigrp_siareply.c
+++ b/eigrpd/eigrp_siareply.c
@@ -99,7 +99,7 @@ void eigrp_siareply_receive(struct eigrp *eigrp, struct ip *iph,
nbr);
msg.packet_type = EIGRP_OPC_SIAQUERY;
msg.eigrp = eigrp;
- msg.data_type = EIGRP_TLV_IPv4_INT;
+ msg.data_type = EIGRP_INT;
msg.adv_router = nbr;
msg.data.ipv4_int_type = tlv;
msg.entry = entry;