diff options
| author | Olivier Certner <olce@FreeBSD.org> | 2026-03-23 14:42:07 +0000 |
|---|---|---|
| committer | Olivier Certner <olce@FreeBSD.org> | 2026-05-29 15:20:35 +0000 |
| commit | 22a0912bb1dc71f18d2e33ec9915a54a8324a3ff (patch) | |
| tree | 8cb452a1999b89bbeacb82f53b3496fe9551ceb7 | |
| parent | 7825338824415153fe29bec30c1d5c1e5fcb638b (diff) | |
MAC/do: Expand "conf" to "configuration" in a panic message on INVARIANTS
No functional change.
Reviewed by: bapt
Fixes: 9818224174c4 ("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
| -rw-r--r-- | sys/security/mac_do/mac_do.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/security/mac_do/mac_do.c b/sys/security/mac_do/mac_do.c index 2258c358ce92..9da7aaa257d5 100644 --- a/sys/security/mac_do/mac_do.c +++ b/sys/security/mac_do/mac_do.c @@ -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(...) |
