The branch main has been updated by tuexen: URL: https://cgit.FreeBSD.org/src/commit/?id=4181fa2a209e0709939ac2f9fb86884522855600
commit 4181fa2a209e0709939ac2f9fb86884522855600 Author: Michael Tuexen <[email protected]> AuthorDate: 2021-09-12 17:21:15 +0000 Commit: Michael Tuexen <[email protected]> CommitDate: 2021-09-12 17:21:15 +0000 sctp: minor cleanup, no functional change MFC after: 1 week --- sys/netinet/sctp_pcb.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/sys/netinet/sctp_pcb.c b/sys/netinet/sctp_pcb.c index a33acce4380b..fabe19c1444d 100644 --- a/sys/netinet/sctp_pcb.c +++ b/sys/netinet/sctp_pcb.c @@ -6698,7 +6698,6 @@ sctp_is_vtag_good(uint32_t tag, uint16_t lport, uint16_t rport, struct timeval * { struct sctpasochead *head; struct sctp_tcb *stcb; - bool result; SCTP_INP_INFO_LOCK_ASSERT(); @@ -6722,13 +6721,10 @@ sctp_is_vtag_good(uint32_t tag, uint16_t lport, uint16_t rport, struct timeval * continue; } /* The tag is currently used, so don't use it. */ - result = false; - goto out; + return (false); } } - result = !sctp_is_in_timewait(tag, lport, rport, (uint32_t)now->tv_sec); -out: - return (result); + return (!sctp_is_in_timewait(tag, lport, rport, (uint32_t)now->tv_sec)); } static void _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all To unsubscribe, send any mail to "[email protected]"
