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:
@@ -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(...)
|
||||
|
||||
Reference in New Issue
Block a user