diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-08-27 01:32:06 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-08-27 01:32:06 +0200 |
commit | 255ab9408f6a9d6addd727c5697d4fbd8b6219f1 (patch) | |
tree | 2c0ade0c33778a1e70f219414b37355eda85c04a /eigrpd/eigrp_zebra.c | |
parent | eigrpd: Refactor access/prefix list applications (diff) | |
download | frr-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_zebra.c')
-rw-r--r-- | eigrpd/eigrp_zebra.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eigrpd/eigrp_zebra.c b/eigrpd/eigrp_zebra.c index 47871dfd3..e61b3d748 100644 --- a/eigrpd/eigrp_zebra.c +++ b/eigrpd/eigrp_zebra.c @@ -365,7 +365,7 @@ void eigrp_zebra_route_add(struct prefix *p, struct list *successors) { struct zapi_route api; struct zapi_nexthop *api_nh; - struct eigrp_neighbor_entry *te; + struct eigrp_nexthop_entry *te; struct listnode *node; int count = 0; |