Date: Thu, 31 Oct 2024 04:43:53 GMT From: Zhenlei Huang <zlei@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 00fa80275f34 - stable/14 - ndp: Remove a stray semicolon Message-ID: <202410310443.49V4hrBV006549@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by zlei: URL: https://cgit.FreeBSD.org/src/commit/?id=00fa80275f34586775e744d83ff94f8f42eaa696 commit 00fa80275f34586775e744d83ff94f8f42eaa696 Author: Zhenlei Huang <zlei@FreeBSD.org> AuthorDate: 2024-10-17 13:05:29 +0000 Commit: Zhenlei Huang <zlei@FreeBSD.org> CommitDate: 2024-10-31 04:40:16 +0000 ndp: Remove a stray semicolon MFC after: 1 week (cherry picked from commit 17120e4bc3e61557816ca0558a60ab969b3df404) --- usr.sbin/ndp/ndp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/ndp/ndp.c b/usr.sbin/ndp/ndp.c index a6f30911ddb4..e98e506ee482 100644 --- a/usr.sbin/ndp/ndp.c +++ b/usr.sbin/ndp/ndp.c @@ -639,7 +639,7 @@ dump_rtsock(struct sockaddr_in6 *addr, int cflag) xo_emit(xobuf, "Neighbor", "Linklayer Address", "Netif", "Expire", "S", "Flags"); } xo_open_list("neighbor-cache"); -again:; +again: mib[0] = CTL_NET; mib[1] = PF_ROUTE; mib[2] = 0;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202410310443.49V4hrBV006549>