diff options
author | Eric Paris <eparis@redhat.com> | 2012-02-15 02:11:07 +0400 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2012-02-16 05:01:42 +0400 |
commit | b0d5de4d58803bbcce2b8175a8dd21c559a3abc1 (patch) | |
tree | 08213154dd13ab28eac64e9a87b3a8b7e5660381 /security/integrity/ima/ima_audit.c | |
parent | bf06189e4d14641c0148bea16e9dd24943862215 (diff) | |
download | linux-b0d5de4d58803bbcce2b8175a8dd21c559a3abc1.tar.xz |
IMA: fix audit res field to indicate 1 for success and 0 for failure
The audit res field ususally indicates success with a 1 and 0 for a
failure. So make IMA do it the same way.
Signed-off-by: Eric Paris <eparis@redhat.com>
Signed-off-by: Mimi Zohar <zohar@us.ibm.com>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security/integrity/ima/ima_audit.c')
-rw-r--r-- | security/integrity/ima/ima_audit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/integrity/ima/ima_audit.c b/security/integrity/ima/ima_audit.c index 2ad942fb1e23..21e96bf188df 100644 --- a/security/integrity/ima/ima_audit.c +++ b/security/integrity/ima/ima_audit.c @@ -61,6 +61,6 @@ void integrity_audit_msg(int audit_msgno, struct inode *inode, audit_log_untrustedstring(ab, inode->i_sb->s_id); audit_log_format(ab, " ino=%lu", inode->i_ino); } - audit_log_format(ab, " res=%d", !result ? 0 : 1); + audit_log_format(ab, " res=%d", !result); audit_log_end(ab); } |