MAC/do: Expand "conf" to "configuration" in a panic message on INVARIANTS

No functional change.

Reviewed by:    bapt
Fixes:          9818224174 ("MAC/do: Executable paths feature (GSoC 2025's final state)")
MFC after:      1 month
Sponsored by:   The FreeBSD Foundation
Pull Request:   https://ron-dev.freebsd.org/FreeBSD/src/pulls/38
This commit is contained in:
Olivier Certner
2026-03-23 22:42:07 +08:00
parent 7825338824
commit 22a0912bb1
+2 -2
View File
@@ -1201,8 +1201,8 @@ check_conf_use_count(const struct conf *const conf, u_int expected)
const u_int use_count = refcount_load(&conf->use_count);
if (use_count != expected)
panic("MAC/do: Conf at %p: Use count is %u, expected %u",
conf, use_count, expected);
panic("MAC/do: Configuration at %p: Use count is %u, "
"expected %u", conf, use_count, expected);
}
#else
#define check_conf_use_count(...)