The branch main has been updated by tuexen: URL: https://cgit.FreeBSD.org/src/commit/?id=daac364e611532c7bfd4bb20f9fea8d365496aa1
commit daac364e611532c7bfd4bb20f9fea8d365496aa1 Author: Peter Lei <[email protected]> AuthorDate: 2025-10-21 09:18:32 +0000 Commit: Michael Tuexen <[email protected]> CommitDate: 2025-10-21 09:20:00 +0000 tcp: fix typo in comment Reviewed by: tuexen MFC after: 3 days Sponsored by: Netflix, Inc. --- sys/netinet/tcp_syncache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netinet/tcp_syncache.c b/sys/netinet/tcp_syncache.c index be20fb44a820..3cb538f7054d 100644 --- a/sys/netinet/tcp_syncache.c +++ b/sys/netinet/tcp_syncache.c @@ -1168,7 +1168,7 @@ syncache_expand(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th, /* * If listening socket requested TCP digests, check that * received ACK has signature and it is correct. - * If not, drop the ACK and leave sc entry in th cache, + * If not, drop the ACK and leave sc entry in the cache, * because SYN was received with correct signature. */ if (sc->sc_flags & SCF_SIGNATURE) {
