From e8451da5e8525de057a6b170d427cca33ae71c73 Mon Sep 17 00:00:00 2001 From: Mateusz Guzik Date: Tue, 11 Dec 2018 17:14:12 +0000 Subject: [PATCH] audi: replace open-coded TDP_AUDITREC checks with the macro Sponsored by: The FreeBSD Foundation --- sys/security/audit/audit.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/security/audit/audit.h b/sys/security/audit/audit.h index 689b541b8cb3..2aeb5329a4d8 100644 --- a/sys/security/audit/audit.h +++ b/sys/security/audit/audit.h @@ -389,7 +389,7 @@ void audit_thread_free(struct thread *td); * auditing is disabled, so we don't just check audit_syscalls_enabled here. */ #define AUDIT_SYSCALL_EXIT(error, td) do { \ - if (td->td_pflags & TDP_AUDITREC) \ + if (AUDITING_TD(td)) \ audit_syscall_exit(error, td); \ } while (0) @@ -397,7 +397,7 @@ void audit_thread_free(struct thread *td); * A Macro to wrap the audit_sysclose() function. */ #define AUDIT_SYSCLOSE(td, fd) do { \ - if (td->td_pflags & TDP_AUDITREC) \ + if (AUDITING_TD(td)) \ audit_sysclose(td, fd); \ } while (0)