From 7d0658ad555072c65634165e39a7cd79a07bcdf2 Mon Sep 17 00:00:00 2001 From: Conrad Meyer Date: Thu, 8 Aug 2019 01:37:41 +0000 Subject: [PATCH] Fix !DDB kernel configurations after r350713 KDB is standard and the kdb_active variable is always available. So, de-conditionalize inclusion of sys/kdb.h in kern_sysctl.c. Reported by: Michael Butler X-MFC-With: r350713 Sponsored by: Dell EMC Isilon --- sys/kern/kern_sysctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/kern_sysctl.c b/sys/kern/kern_sysctl.c index 6856577e8e0..63f07815f46 100644 --- a/sys/kern/kern_sysctl.c +++ b/sys/kern/kern_sysctl.c @@ -55,6 +55,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include @@ -67,7 +68,6 @@ __FBSDID("$FreeBSD$"); #endif #ifdef DDB -#include #include #include #endif