The branch main has been updated by bz: URL: https://cgit.FreeBSD.org/src/commit/?id=072af59d46af264c835c8cda21d61b82fb4251ab
commit 072af59d46af264c835c8cda21d61b82fb4251ab Author: Bjoern A. Zeeb <[email protected]> AuthorDate: 2026-01-25 12:33:17 +0000 Commit: Bjoern A. Zeeb <[email protected]> CommitDate: 2026-01-25 12:35:23 +0000 netlink: make compile without VIMAGE Add the #include for proc.h which seems to be there in the VIMAGE case through some other includes only. Sponsored by: The FreeBSD Foundation Fixes: 04f6b99947d2 --- sys/netlink/route/iface.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/netlink/route/iface.c b/sys/netlink/route/iface.c index 2ae43e22f7ed..3e30d74a3793 100644 --- a/sys/netlink/route/iface.c +++ b/sys/netlink/route/iface.c @@ -36,6 +36,7 @@ #include <sys/socket.h> #include <sys/sockio.h> #include <sys/syslog.h> +#include <sys/proc.h> #include <net/if.h> #include <net/if_dl.h>
