git: 2a0d26d793b2 - main - tcp: fix typos in comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 04 Apr 2025 16:56:24 UTC
The branch main has been updated by tuexen:
URL: https://cgit.FreeBSD.org/src/commit/?id=2a0d26d793b2ff63d36305aa98047a4bc6a6cd8c
commit 2a0d26d793b2ff63d36305aa98047a4bc6a6cd8c
Author: Peter Lei <peterlei@netflix.com>
AuthorDate: 2025-04-04 16:54:35 +0000
Commit: Michael Tuexen <tuexen@FreeBSD.org>
CommitDate: 2025-04-04 16:54:35 +0000
tcp: fix typos in comment
Reviewed by: tuexen
MFC after: 3 days
Sponsored by: Netflix, Inc.
---
sys/netinet/tcp_input.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c
index 29a6b431f311..a9b5f5374503 100644
--- a/sys/netinet/tcp_input.c
+++ b/sys/netinet/tcp_input.c
@@ -1453,7 +1453,7 @@ drop:
* is at least 3/8 of the current socket buffer size.
* 3. receive buffer size has not hit maximal automatic size;
*
- * If all of the criteria are met we increaset the socket buffer
+ * If all of the criteria are met, we increase the socket buffer
* by a 1/2 (bounded by the max). This allows us to keep ahead
* of slow-start but also makes it so our peer never gets limited
* by our rwnd which we then open up causing a burst.