forked from Mirror/frr
*: Fix spelling of non-existant
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
This commit is contained in:
parent
8afb9d8a70
commit
b97047ed11
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue