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/apparmor/file.c | |
| parent | d4cf970d0732628d514405c5a975024b9e205b0b (diff) | |
| download | olio-linux-3.10-bd5e50f9c1c71daac273fa586424f07205f6b13b.tar.xz olio-linux-3.10-bd5e50f9c1c71daac273fa586424f07205f6b13b.zip  | |
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/apparmor/file.c')
| -rw-r--r-- | security/apparmor/file.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/security/apparmor/file.c b/security/apparmor/file.c index 2f8fcba9ce4..6ab264ca85c 100644 --- a/security/apparmor/file.c +++ b/security/apparmor/file.c @@ -108,7 +108,7 @@ int aa_audit_file(struct aa_profile *profile, struct file_perms *perms,  	int type = AUDIT_APPARMOR_AUTO;  	struct common_audit_data sa;  	struct apparmor_audit_data aad = {0,}; -	COMMON_AUDIT_DATA_INIT(&sa, NONE); +	COMMON_AUDIT_DATA_INIT(&sa, LSM_AUDIT_DATA_NONE);  	sa.aad = &aad;  	aad.op = op,  	aad.fs.request = request;  |