git: 9a9c3e36f1d6 - stable/13 - tcp_stacks: Fix two typos in a source code comments
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 07 Jan 2024 11:45:04 UTC
The branch stable/13 has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=9a9c3e36f1d663bbf94b15cc453621e07d71c747
commit 9a9c3e36f1d663bbf94b15cc453621e07d71c747
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:43:59 +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 f44e76850dd8..805ffa492c56 100644
--- a/sys/netinet/tcp_stacks/bbr.c
+++ b/sys/netinet/tcp_stacks/bbr.c
@@ -6889,7 +6889,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 019683f9af41..c3a24f4c19b6 100644
--- a/sys/netinet/tcp_stacks/rack.c
+++ b/sys/netinet/tcp_stacks/rack.c
@@ -8008,7 +8008,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;