git: 9938f6408934 - stable/14 - audit/audit.c: fix typo KERNEL_PANICED->KERNEL_PANICKED
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 08 Feb 2025 00:38:10 UTC
The branch stable/14 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=9938f640893455ed7b8b86810e1a9511f9e6fa52 commit 9938f640893455ed7b8b86810e1a9511f9e6fa52 Author: Konstantin Belousov <kib@FreeBSD.org> AuthorDate: 2025-02-05 22:14:55 +0000 Commit: Konstantin Belousov <kib@FreeBSD.org> CommitDate: 2025-02-08 00:26:56 +0000 audit/audit.c: fix typo KERNEL_PANICED->KERNEL_PANICKED (cherry picked from commit 96dcff1a317f648886febbc15e606b4c6c45d11c) --- sys/security/audit/audit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/security/audit/audit.c b/sys/security/audit/audit.c index 6a9730571607..6f935ede5371 100644 --- a/sys/security/audit/audit.c +++ b/sys/security/audit/audit.c @@ -397,7 +397,7 @@ SYSINIT(audit_init, SI_SUB_AUDIT, SI_ORDER_FIRST, audit_init, NULL); void audit_shutdown(void *arg, int howto) { - if (KERNEL_PANICED()) + if (KERNEL_PANICKED()) return; audit_rotate_vnode(NULL, NULL); }