]> git.puffer.fish Git - matthieu/frr.git/commitdiff
*: Fix spelling of non-existant
authorDonald Sharp <sharpd@nvidia.com>
Tue, 19 Apr 2022 12:16:45 +0000 (08:16 -0400)
committerDonald Sharp <sharpd@nvidia.com>
Tue, 19 Apr 2022 12:16:45 +0000 (08:16 -0400)
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
isisd/isis_route.c
pimd/pim_igmp.c
pimd/pim_igmpv3.c

index 764a0b0cd3bb3046dd6c112325a944a3bdc346f0..9f8f639e5d2e6fbc1d9390491b1fb1c5f04bb6f9 100644 (file)
@@ -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;
        }
index 8f81dbc23ab11dfc1ab16a4a598af511b0e17bc2..0dce8faa90dc2e2c138a33bfd2d00d6c837116a1 100644 (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))
                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;
index fb9b385338dc4859e5f767c81ea39572462e0cbe..933b43cd98d1d649737f72bf065a16ef7c055378 100644 (file)
@@ -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;