summaryrefslogtreecommitdiffstats
path: root/eigrpd/eigrp_siareply.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2017-08-27 01:32:06 +0200
committerDonald Sharp <sharpd@cumulusnetworks.com>2017-08-27 01:32:06 +0200
commit255ab9408f6a9d6addd727c5697d4fbd8b6219f1 (patch)
tree2c0ade0c33778a1e70f219414b37355eda85c04a /eigrpd/eigrp_siareply.c
parenteigrpd: Refactor access/prefix list applications (diff)
downloadfrr-255ab9408f6a9d6addd727c5697d4fbd8b6219f1.tar.xz
frr-255ab9408f6a9d6addd727c5697d4fbd8b6219f1.zip
eigrpd: eigrp_neighbor_entry to eigrp_nexthop_entry
The struct 'eigrp_neighbor_entry' really represents a nexthop for a prefix. Rename the structure to better represent what we are representing. 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 8496c0567..4998a2d54 100644
--- a/eigrpd/eigrp_siareply.c
+++ b/eigrpd/eigrp_siareply.c
@@ -94,7 +94,7 @@ void eigrp_siareply_receive(struct eigrp *eigrp, struct ip *iph,
* know)*/
if (dest != NULL) {
struct eigrp_fsm_action_message msg;
- struct eigrp_neighbor_entry *entry =
+ struct eigrp_nexthop_entry *entry =
eigrp_prefix_entry_lookup(dest->entries,
nbr);
msg.packet_type = EIGRP_OPC_SIAQUERY;