diff options
author | Eric Paris <eparis@redhat.com> | 2012-04-04 15:01:42 -0400 |
---|---|---|
committer | Eric Paris <eparis@redhat.com> | 2012-04-09 12:23:01 -0400 |
commit | bd5e50f9c1c71daac273fa586424f07205f6b13b (patch) | |
tree | 57331d7e1941077cd55d33e7f12e6f8a07cdd80e /security/selinux/avc.c | |
parent | d4cf970d0732628d514405c5a975024b9e205b0b (diff) |
LSM: remove the COMMON_AUDIT_DATA_INIT type expansion
Just open code it so grep on the source code works better.
Signed-off-by: Eric Paris <eparis@redhat.com>
Diffstat (limited to 'security/selinux/avc.c')
-rw-r--r-- | security/selinux/avc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/avc.c b/security/selinux/avc.c index 1a04247e3a17..c04eea2bdb0a 100644 --- a/security/selinux/avc.c +++ b/security/selinux/avc.c | |||
@@ -469,7 +469,7 @@ noinline int slow_avc_audit(u32 ssid, u32 tsid, u16 tclass, | |||
469 | 469 | ||
470 | if (!a) { | 470 | if (!a) { |
471 | a = &stack_data; | 471 | a = &stack_data; |
472 | COMMON_AUDIT_DATA_INIT(a, NONE); | 472 | COMMON_AUDIT_DATA_INIT(a, LSM_AUDIT_DATA_NONE); |
473 | a->selinux_audit_data = &sad; | 473 | a->selinux_audit_data = &sad; |
474 | } | 474 | } |
475 | 475 | ||