summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2022-04-19 14:25:03 +0200
committerDonald Sharp <sharpd@nvidia.com>2022-04-19 14:25:03 +0200
commit2ef62909a9ad64f25605d44750e02f3d21177ba6 (patch)
treefbdcda68043ad940bda1f5ddecdc78b62ba97fa1
parenttests: Fix spelling of Initilized (diff)
downloadfrr-2ef62909a9ad64f25605d44750e02f3d21177ba6.tar.xz
frr-2ef62909a9ad64f25605d44750e02f3d21177ba6.zip
*: Fix spelling of atleast
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
-rw-r--r--bgpd/bgp_conditional_adv.c2
-rw-r--r--ospfd/ospf_packet.c2
-rw-r--r--pimd/pim_bsm.c2
-rw-r--r--pimd/pim_mlag.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/bgpd/bgp_conditional_adv.c b/bgpd/bgp_conditional_adv.c
index f72a373a1..dd1510a67 100644
--- a/bgpd/bgp_conditional_adv.c
+++ b/bgpd/bgp_conditional_adv.c
@@ -300,7 +300,7 @@ void bgp_conditional_adv_enable(struct peer *peer, afi_t afi, safi_t safi)
*/
peer->advmap_config_change[afi][safi] = true;
- /* advertise-map is already configured on atleast one of its
+ /* advertise-map is already configured on at least one of its
* neighbors (AFI/SAFI). So just increment the counter.
*/
if (++bgp->condition_filter_count > 1) {
diff --git a/ospfd/ospf_packet.c b/ospfd/ospf_packet.c
index c2bd7a079..c11321949 100644
--- a/ospfd/ospf_packet.c
+++ b/ospfd/ospf_packet.c
@@ -3601,7 +3601,7 @@ static int ospf_make_ls_upd(struct ospf_interface *oi, struct list *update,
zlog_debug("%s: List Iteration %d LSA[%s]", __func__,
count, dump_lsa_key(lsa));
- /* Will it fit? Minimum it has to fit atleast one */
+ /* Will it fit? Minimum it has to fit at least one */
if ((length + delta + ntohs(lsa->data->length) > size_noauth) &&
(count > 0))
break;
diff --git a/pimd/pim_bsm.c b/pimd/pim_bsm.c
index 0e91773be..90d873b0a 100644
--- a/pimd/pim_bsm.c
+++ b/pimd/pim_bsm.c
@@ -849,7 +849,7 @@ static bool pim_bsm_frag_send(uint8_t *buf, uint32_t len, struct interface *ifp,
this_pkt_rem = pim_mtu - (PIM_BSM_HDR_LEN
+ PIM_MSG_HEADER_LEN);
- /* If pkt can't accomodate next group + atleast
+ /* If pkt can't accomodate next group + at least
* one rp, we must break out of this inner loop
* and process next RP
*/
diff --git a/pimd/pim_mlag.c b/pimd/pim_mlag.c
index 68f77ad6d..9763a79a8 100644
--- a/pimd/pim_mlag.c
+++ b/pimd/pim_mlag.c
@@ -1015,7 +1015,7 @@ void pim_if_configure_mlag_dualactive(struct pim_interface *pim_ifp)
if (router->pim_mlag_intf_cnt == 1) {
/*
- * atleast one Interface is configured for MLAG, send register
+ * at least one Interface is configured for MLAG, send register
* to Zebra for receiving MLAG Updates
*/
pim_mlag_register();