The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=0fd15eb33548f8f9f3bb5aae25226b4dee402b4c
commit 0fd15eb33548f8f9f3bb5aae25226b4dee402b4c Author: Elyes Haouas <[email protected]> AuthorDate: 2023-03-02 14:59:07 +0000 Commit: Warner Losh <[email protected]> CommitDate: 2023-03-02 15:01:39 +0000 rrenumd: Remove useless return at the end of void function Signed-off-by: Elyes Haouas <[email protected]> Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/656 --- usr.sbin/rrenumd/rrenumd.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/usr.sbin/rrenumd/rrenumd.c b/usr.sbin/rrenumd/rrenumd.c index dd08396b6421..2b9f45c4e6cb 100644 --- a/usr.sbin/rrenumd/rrenumd.c +++ b/usr.sbin/rrenumd/rrenumd.c @@ -348,8 +348,6 @@ sock6_open(struct flags *flags } #endif /* IPSEC_POLICY_IPSEC */ #endif /* IPSEC */ - - return; } static void @@ -414,8 +412,6 @@ sock4_open(struct flags *flags } #endif /* IPSEC_POLICY_IPSEC */ #endif /* IPSEC */ - - return; } static void
