The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=f830db48c131064bfb534efff92e37653d6f05c4
commit f830db48c131064bfb534efff92e37653d6f05c4 Author: rilysh <[email protected]> AuthorDate: 2024-02-03 00:38:12 +0000 Commit: Warner Losh <[email protected]> CommitDate: 2024-02-03 01:35:01 +0000 sys/dev/enic/if_enic.c: remove an extra semicolon Signed-off-by: rilysh <[email protected]> Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/959 --- sys/dev/enic/if_enic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/enic/if_enic.c b/sys/dev/enic/if_enic.c index 154eedfd0a19..dc0c0d028e20 100644 --- a/sys/dev/enic/if_enic.c +++ b/sys/dev/enic/if_enic.c @@ -1587,7 +1587,7 @@ enic_setup_finish(struct enic *enic) softc->multicast = 0; softc->broadcast = 1; softc->promisc = 0; - softc->allmulti = 1;; + softc->allmulti = 1; enic_update_packet_filter(enic); return 0;
