git: 0faa9ca827a5 - main - tcp: remove stray ;
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 06 Oct 2025 21:36:08 UTC
The branch main has been updated by tuexen:
URL: https://cgit.FreeBSD.org/src/commit/?id=0faa9ca827a5e91273ba757bd87bd9e8179a0862
commit 0faa9ca827a5e91273ba757bd87bd9e8179a0862
Author: Michael Tuexen <tuexen@FreeBSD.org>
AuthorDate: 2025-10-06 21:34:38 +0000
Commit: Michael Tuexen <tuexen@FreeBSD.org>
CommitDate: 2025-10-06 21:35:57 +0000
tcp: remove stray ;
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 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);