git: 0c8731064bb5 - stable/13 - netinet: Correct a typo in source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 07 Sep 2022 07:31:49 UTC
The branch stable/13 has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=0c8731064bb5793e910c23ec0a3a51c4da4b24d2
commit 0c8731064bb5793e910c23ec0a3a51c4da4b24d2
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-09-04 10:57:12 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-09-07 07:28:21 +0000
netinet: Correct a typo in source code comment
- s/occured/occurred/
(cherry picked from commit 893f36b7f18012f1849c96e12ec4241b3d7bd337)
---
sys/netinet/in_pcb.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/netinet/in_pcb.h b/sys/netinet/in_pcb.h
index 1849ad34fe6c..1cde1496aeab 100644
--- a/sys/netinet/in_pcb.h
+++ b/sys/netinet/in_pcb.h
@@ -178,7 +178,7 @@ struct in_conninfo {
* it may be transitioning to 0 (by the hpts).
* That's ok since that will just mean an extra call to tcp_output
* that most likely will find the call you executed
- * (when the mis-match occured) will have put the TCB back
+ * (when the mis-match occurred) will have put the TCB back
* on the hpts and it will return. If your
* call did not add the inp back to the hpts then you will either
* over-send or the cwnd will block you from sending more.