*: Fix spelling of non-existant

Signed-off-by: Donald Sharp <sharpd@nvidia.com>
This commit is contained in:
Donald Sharp 2022-04-19 08:16:45 -04:00
parent 8afb9d8a70
commit b97047ed11
3 changed files with 7 additions and 7 deletions

View file

@ -443,7 +443,7 @@ void isis_route_delete(struct isis_area *area, struct route_node *rode,
if (rinfo == NULL) { if (rinfo == NULL) {
if (IS_DEBUG_RTE_EVENTS) if (IS_DEBUG_RTE_EVENTS)
zlog_debug( zlog_debug(
"ISIS-Rte: tried to delete non-existant route %s", "ISIS-Rte: tried to delete non-existent route %s",
buff); buff);
return; return;
} }

View file

@ -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)) if (pim_is_group_filtered(ifp->info, &group_addr))
return -1; 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); group = igmp_add_group_by_addr(igmp, group_addr);
if (!group) { if (!group) {
return -1; return -1;

View file

@ -516,7 +516,7 @@ static void allow(struct gm_sock *igmp, struct in_addr from,
return; 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); group = igmp_add_group_by_addr(igmp, group_addr);
if (!group) { if (!group) {
return; 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)) if (pim_is_group_filtered(ifp->info, &group_addr))
return; 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); group = igmp_add_group_by_addr(igmp, group_addr);
if (!group) { if (!group) {
return; return;
@ -790,7 +790,7 @@ void igmpv3_report_toin(struct gm_sock *igmp, struct in_addr from,
* entry is present, the request is ignored. * entry is present, the request is ignored.
*/ */
if (num_sources) { 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); group = igmp_add_group_by_addr(igmp, group_addr);
if (!group) { if (!group) {
return; 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); 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); group = igmp_add_group_by_addr(igmp, group_addr);
if (!group) { if (!group) {
return; 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); 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); group = igmp_add_group_by_addr(igmp, group_addr);
if (!group) { if (!group) {
return; return;