git: 7b0b448ba9fd - main - tcp_stacks: Fix two typos in a source code comments
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 27 Dec 2023 08:42:32 UTC
The branch main has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=7b0b448ba9fd53fb4db81a2309dedfdc47533cfb commit 7b0b448ba9fd53fb4db81a2309dedfdc47533cfb Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2023-12-27 08:36:30 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2023-12-27 08:36:30 +0000 tcp_stacks: Fix two typos in a source code comments - s/recieved/received/ MFC after: 3 days --- 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 5f7c6125c1f0..c643f0321099 100644 --- a/sys/netinet/tcp_stacks/bbr.c +++ b/sys/netinet/tcp_stacks/bbr.c @@ -6845,7 +6845,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 229f36008a6a..8e374e28465e 100644 --- a/sys/netinet/tcp_stacks/rack.c +++ b/sys/netinet/tcp_stacks/rack.c @@ -9145,7 +9145,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;