git: 3ca54c736b9c - stable/15 - tcp: remove stray ;
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 09 Oct 2025 08:00:41 UTC
The branch stable/15 has been updated by tuexen: URL: https://cgit.FreeBSD.org/src/commit/?id=3ca54c736b9c129f700cb5e6b7012aaff2bf65d8 commit 3ca54c736b9c129f700cb5e6b7012aaff2bf65d8 Author: Michael Tuexen <tuexen@FreeBSD.org> AuthorDate: 2025-10-06 21:34:38 +0000 Commit: Michael Tuexen <tuexen@FreeBSD.org> CommitDate: 2025-10-09 08:00:29 +0000 tcp: remove stray ; Sponsored by: Netflix, Inc. (cherry picked from commit 0faa9ca827a5e91273ba757bd87bd9e8179a0862) --- 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 1fb6104a2944..f842a5678fa1 100644 --- a/sys/netinet/tcp_syncache.c +++ b/sys/netinet/tcp_syncache.c @@ -1286,7 +1286,7 @@ syncache_expand(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th, s, __func__, th->th_ack, sc->sc_iss + 1); SCH_UNLOCK(sch); free(s, M_TCPLOG); - return (0); /* Do send RST, do not free sc. */; + return (0); /* Do send RST, do not free sc. */ } TAILQ_REMOVE(&sch->sch_bucket, sc, sc_hash);