From 0dbbed21a643f6c95bebe23008a332ff68adb203 Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Wed, 1 Apr 2026 07:13:05 -0400 Subject: [PATCH] ip6_mroute: Fix the type name in sysctl_mfctable() No functional change since apparently it's fine to compute the size of a pointer type when the base type is undefined. Fixes: 0bb9c2b665d9 ("ip6_mroute: FIBify") --- sys/netinet6/ip6_mroute.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netinet6/ip6_mroute.c b/sys/netinet6/ip6_mroute.c index 9a7f611b8b4..8743673fd25 100644 --- a/sys/netinet6/ip6_mroute.c +++ b/sys/netinet6/ip6_mroute.c @@ -220,7 +220,7 @@ sysctl_mfctable(SYSCTL_HANDLER_ARGS) fibnum = curthread->td_proc->p_fibnum; return (SYSCTL_OUT(req, &V_mfctables[fibnum].mfchashtbl, - sizeof(struct mfc6c *) * MF6CTBLSIZ)); + sizeof(struct mf6c *) * MF6CTBLSIZ)); } SYSCTL_PROC(_net_inet6_ip6, OID_AUTO, mf6ctable, CTLTYPE_OPAQUE | CTLFLAG_RD,