From b97047ed11ece92d2faa286d4b7f446d01edb0d8 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Tue, 19 Apr 2022 08:16:45 -0400 Subject: [PATCH] *: Fix spelling of non-existant Signed-off-by: Donald Sharp --- isisd/isis_route.c | 2 +- pimd/pim_igmp.c | 2 +- pimd/pim_igmpv3.c | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/isisd/isis_route.c b/isisd/isis_route.c index 764a0b0cd3..9f8f639e5d 100644 --- a/isisd/isis_route.c +++ b/isisd/isis_route.c @@ -443,7 +443,7 @@ void isis_route_delete(struct isis_area *area, struct route_node *rode, if (rinfo == NULL) { if (IS_DEBUG_RTE_EVENTS) zlog_debug( - "ISIS-Rte: tried to delete non-existant route %s", + "ISIS-Rte: tried to delete non-existent route %s", buff); return; } diff --git a/pimd/pim_igmp.c b/pimd/pim_igmp.c index 8f81dbc23a..0dce8faa90 100644 --- a/pimd/pim_igmp.c +++ b/pimd/pim_igmp.c @@ -668,7 +668,7 @@ static int igmp_v1_recv_report(struct gm_sock *igmp, struct in_addr from, if (pim_is_group_filtered(ifp->info, &group_addr)) return -1; - /* non-existant group is created as INCLUDE {empty} */ + /* non-existent group is created as INCLUDE {empty} */ group = igmp_add_group_by_addr(igmp, group_addr); if (!group) { return -1; diff --git a/pimd/pim_igmpv3.c b/pimd/pim_igmpv3.c index fb9b385338..933b43cd98 100644 --- a/pimd/pim_igmpv3.c +++ b/pimd/pim_igmpv3.c @@ -516,7 +516,7 @@ static void allow(struct gm_sock *igmp, struct in_addr from, return; } - /* non-existant group is created as INCLUDE {empty} */ + /* non-existent group is created as INCLUDE {empty} */ group = igmp_add_group_by_addr(igmp, group_addr); if (!group) { return; @@ -669,7 +669,7 @@ void igmpv3_report_isex(struct gm_sock *igmp, struct in_addr from, if (pim_is_group_filtered(ifp->info, &group_addr)) return; - /* non-existant group is created as INCLUDE {empty} */ + /* non-existent group is created as INCLUDE {empty} */ group = igmp_add_group_by_addr(igmp, group_addr); if (!group) { return; @@ -790,7 +790,7 @@ void igmpv3_report_toin(struct gm_sock *igmp, struct in_addr from, * entry is present, the request is ignored. */ if (num_sources) { - /* non-existant group is created as INCLUDE {empty} */ + /* non-existent group is created as INCLUDE {empty} */ group = igmp_add_group_by_addr(igmp, group_addr); if (!group) { return; @@ -944,7 +944,7 @@ void igmpv3_report_toex(struct gm_sock *igmp, struct in_addr from, on_trace(__func__, ifp, from, group_addr, num_sources, sources); - /* non-existant group is created as INCLUDE {empty} */ + /* non-existent group is created as INCLUDE {empty} */ group = igmp_add_group_by_addr(igmp, group_addr); if (!group) { return; @@ -1465,7 +1465,7 @@ void igmpv3_report_block(struct gm_sock *igmp, struct in_addr from, on_trace(__func__, ifp, from, group_addr, num_sources, sources); - /* non-existant group is created as INCLUDE {empty} */ + /* non-existent group is created as INCLUDE {empty} */ group = igmp_add_group_by_addr(igmp, group_addr); if (!group) { return; -- 2.39.5