From 893f36b7f18012f1849c96e12ec4241b3d7bd337 Mon Sep 17 00:00:00 2001 From: Gordon Bergling Date: Sun, 4 Sep 2022 12:57:12 +0200 Subject: [PATCH] netinet: Correct a typo in source code comment - s/occured/occurred/ MFC after: 3 days --- 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 c6a8448b879..33147499916 100644 --- a/sys/netinet/in_pcb.h +++ b/sys/netinet/in_pcb.h @@ -168,7 +168,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.