summaryrefslogtreecommitdiffstats
path: root/eigrpd/eigrp_hello.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2020-11-28 13:45:08 +0100
committerDonald Sharp <sharpd@nvidia.com>2020-11-28 13:45:08 +0100
commit67b8d7ec09e17599c12a73d1ed65b8d79396b8db (patch)
tree6562550bd06811f96cfd4e1d27ab460da5089de4 /eigrpd/eigrp_hello.c
parentMerge pull request #7584 from opensourcerouting/topotest-asan-fix (diff)
downloadfrr-67b8d7ec09e17599c12a73d1ed65b8d79396b8db.tar.xz
frr-67b8d7ec09e17599c12a73d1ed65b8d79396b8db.zip
eigrpd: Remove unneeeded if state types
There are some unused/unneeded if state types in eigrp, remove them Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'eigrpd/eigrp_hello.c')
-rw-r--r--eigrpd/eigrp_hello.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/eigrpd/eigrp_hello.c b/eigrpd/eigrp_hello.c
index f512833e0..13a2c4206 100644
--- a/eigrpd/eigrp_hello.c
+++ b/eigrpd/eigrp_hello.c
@@ -745,12 +745,6 @@ void eigrp_hello_send(struct eigrp_interface *ei, uint8_t flags,
{
struct eigrp_packet *ep = NULL;
- /* If this is passive interface, do not send EIGRP Hello.
- if ((EIGRP_IF_PASSIVE_STATUS (ei) == EIGRP_IF_PASSIVE) ||
- (ei->type != EIGRP_IFTYPE_NBMA))
- return;
- */
-
if (IS_DEBUG_EIGRP_PACKET(0, SEND))
zlog_debug("Queueing [Hello] Interface(%s)", IF_NAME(ei));