git: beab2fe92453 - main - routing: Include opt_route.h in route_ctl.c
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 28 Mar 2026 00:43:38 UTC
The branch main has been updated by pouria:
URL: https://cgit.FreeBSD.org/src/commit/?id=beab2fe92453861e048cf25ea784d8f82523d288
commit beab2fe92453861e048cf25ea784d8f82523d288
Author: Pouria Mousavizadeh Tehrani <pouria@FreeBSD.org>
AuthorDate: 2026-03-27 23:50:13 +0000
Commit: Pouria Mousavizadeh Tehrani <pouria@FreeBSD.org>
CommitDate: 2026-03-27 23:56:48 +0000
routing: Include opt_route.h in route_ctl.c
Fix incorrect removal of opt_route.h header in route_ctl.c
Reported by: Jenkins
Fixes: 254b23eb1f54 ("routing: Retire ROUTE_MPATH compile option")
Differential Revision: https://reviews.freebsd.org/D55884
---
sys/net/route/route_ctl.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys/net/route/route_ctl.c b/sys/net/route/route_ctl.c
index f99b8eacf0a7..c6d8d43a73f4 100644
--- a/sys/net/route/route_ctl.c
+++ b/sys/net/route/route_ctl.c
@@ -28,6 +28,7 @@
#include <sys/cdefs.h>
#include "opt_inet.h"
#include "opt_inet6.h"
+#include "opt_route.h"
#include <sys/param.h>
#include <sys/systm.h>