diff options
author | Eric Paris <eparis@redhat.com> | 2010-04-27 21:20:38 (GMT) |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2010-04-27 22:51:12 (GMT) |
commit | cb84aa9b42b506299e5aea1ba4da26c03ab12877 (patch) | |
tree | af646c3d148f5c04f7362c8bddc59b8518cafd9e /security/selinux/avc.c | |
parent | b03df87d119f50715891dcc09e487f6ae5c029f1 (diff) | |
download | linux-cb84aa9b42b506299e5aea1ba4da26c03ab12877.tar.xz |
LSM Audit: rename LSM_AUDIT_NO_AUDIT to LSM_AUDIT_DATA_NONE
Most of the LSM common audit work uses LSM_AUDIT_DATA_* for the naming.
This was not so for LSM_AUDIT_NO_AUDIT which means the generic initializer
cannot be used. This patch just renames the flag so the generic
initializer can be used.
Signed-off-by: Eric Paris <eparis@redhat.com>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security/selinux/avc.c')
-rw-r--r-- | security/selinux/avc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/security/selinux/avc.c b/security/selinux/avc.c index 989fef8..7f1a304 100644 --- a/security/selinux/avc.c +++ b/security/selinux/avc.c @@ -499,8 +499,7 @@ void avc_audit(u32 ssid, u32 tsid, return; if (!a) { a = &stack_data; - memset(a, 0, sizeof(*a)); - a->type = LSM_AUDIT_NO_AUDIT; + COMMON_AUDIT_DATA_INIT(a, NONE); } a->selinux_audit_data.tclass = tclass; a->selinux_audit_data.requested = requested; |