mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-09 03:47:47 +00:00
eigrpd: Fix SA issue with setting but not using
We assign a value to the eigrp data structure and then immediately overwrite it in the for loop. No need to do a eigrp_lookup. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
parent
9d55926924
commit
7d7acfc779
@ -285,7 +285,7 @@ void eigrp_if_update(struct interface *ifp)
|
|||||||
{
|
{
|
||||||
struct listnode *node, *nnode;
|
struct listnode *node, *nnode;
|
||||||
struct route_node *rn;
|
struct route_node *rn;
|
||||||
struct eigrp *eigrp = eigrp_lookup(ifp->vrf_id);
|
struct eigrp *eigrp;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* In the event there are multiple eigrp autonymnous systems running,
|
* In the event there are multiple eigrp autonymnous systems running,
|
||||||
|
Loading…
Reference in New Issue
Block a user