git: 803570ec2098 - stable/14 - tcp_stacks: Fix two typos in a source code comments

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Sun, 07 Jan 2024 11:42:58 UTC
The branch stable/14 has been updated by gbe:

URL: https://cgit.FreeBSD.org/src/commit/?id=803570ec2098ddf88d0e0531328e2589dc95299a

commit 803570ec2098ddf88d0e0531328e2589dc95299a
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2023-12-27 08:36:30 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2024-01-07 11:42:06 +0000

    tcp_stacks: Fix two typos in a source code comments
    
    - s/recieved/received/
    
    (cherry picked from commit 7b0b448ba9fd53fb4db81a2309dedfdc47533cfb)
---
 sys/netinet/tcp_stacks/bbr.c  | 2 +-
 sys/netinet/tcp_stacks/rack.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/netinet/tcp_stacks/bbr.c b/sys/netinet/tcp_stacks/bbr.c
index 013bd0982fd3..4a472c5cea66 100644
--- a/sys/netinet/tcp_stacks/bbr.c
+++ b/sys/netinet/tcp_stacks/bbr.c
@@ -6842,7 +6842,7 @@ bbr_update_rtt(struct tcpcb *tp, struct tcp_bbr *bbr,
 	 * Ok its a SACK block that we retransmitted. or a windows
 	 * machine without timestamps. We can tell nothing from the
 	 * time-stamp since its not there or the time the peer last
-	 * recieved a segment that moved forward its cum-ack point.
+	 * received a segment that moved forward its cum-ack point.
 	 *
 	 * Lets look at the last retransmit and see what we can tell
 	 * (with BBR for space we only keep 2 note we have to keep
diff --git a/sys/netinet/tcp_stacks/rack.c b/sys/netinet/tcp_stacks/rack.c
index a6e649f78c10..0dd724399ebd 100644
--- a/sys/netinet/tcp_stacks/rack.c
+++ b/sys/netinet/tcp_stacks/rack.c
@@ -9141,7 +9141,7 @@ rack_update_rtt(struct tcpcb *tp, struct tcp_rack *rack,
 		 * Ok its a SACK block that we retransmitted. or a windows
 		 * machine without timestamps. We can tell nothing from the
 		 * time-stamp since its not there or the time the peer last
-		 * recieved a segment that moved forward its cum-ack point.
+		 * received a segment that moved forward its cum-ack point.
 		 */
 ts_not_found:
 		i = rsm->r_rtr_cnt - 1;