diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-09-05 13:48:52 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-09-05 13:48:52 +0200 |
commit | af0a63440534e6d1e093a6f14b5e63c05649038f (patch) | |
tree | 7400074292f7c89fb7eace64a5da2502a4820c76 /eigrpd/eigrp_reply.c | |
parent | Merge pull request #1051 from donaldsharp/plists (diff) | |
download | frr-af0a63440534e6d1e093a6f14b5e63c05649038f.tar.xz frr-af0a63440534e6d1e093a6f14b5e63c05649038f.zip |
eigrp: Fix missing neighbor->nexthop changes?
I'm not sure how this was missed or why master
is not failing to compile.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'eigrpd/eigrp_reply.c')
-rw-r--r-- | eigrpd/eigrp_reply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eigrpd/eigrp_reply.c b/eigrpd/eigrp_reply.c index 11e6e855c..20d8b1b47 100644 --- a/eigrpd/eigrp_reply.c +++ b/eigrpd/eigrp_reply.c @@ -168,7 +168,7 @@ void eigrp_reply_receive(struct eigrp *eigrp, struct ip *iph, assert(dest); struct eigrp_fsm_action_message msg; - struct eigrp_neighbor_entry *entry = + struct eigrp_nexthop_entry *entry = eigrp_prefix_entry_lookup(dest->entries, nbr); if (eigrp_update_prefix_apply(eigrp, ei, |