The branch main has been updated by bz:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=117306dc606bf331795636b165b25be66e40d6a0

commit 117306dc606bf331795636b165b25be66e40d6a0
Author:     Bjoern A. Zeeb <[email protected]>
AuthorDate: 2025-12-20 22:47:40 +0000
Commit:     Bjoern A. Zeeb <[email protected]>
CommitDate: 2025-12-20 22:47:40 +0000

    in6_ifattach: include sys/eventhandler.h to unbreak NOVIMAGE builds
    
    LINT-NOVIMAGE fails to build due to a missing eventhandler.h include
    which in hte VIMAGE case is likely leaked through some other header.
    Add the #include to unbreak the build.
    
    Fixes:  0d469d23715d6 (net: attach IPv4 and IPv6 stacks to an ...)
---
 sys/netinet6/in6_ifattach.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys/netinet6/in6_ifattach.c b/sys/netinet6/in6_ifattach.c
index a2d236cccc41..c3d256a8d51f 100644
--- a/sys/netinet6/in6_ifattach.c
+++ b/sys/netinet6/in6_ifattach.c
@@ -32,6 +32,7 @@
  */
 
 #include <sys/param.h>
+#include <sys/eventhandler.h>
 #include <sys/systm.h>
 #include <sys/counter.h>
 #include <sys/malloc.h>

Reply via email to