diff options
author | Dmitry Kasatkin <dmitry.kasatkin@intel.com> | 2012-09-27 11:26:53 -0400 |
---|---|---|
committer | James Morris <james.l.morris@oracle.com> | 2012-10-05 08:32:16 -0400 |
commit | d26e1936227b538a1691b978566ef269aef10853 (patch) | |
tree | c1b803d6177f6c39932a159c7bdb2c557497e16f /security/integrity/ima/ima_appraise.c | |
parent | ecefbd94b834fa32559d854646d777c56749ef1c (diff) |
ima: fix bug in argument order
mask argument goes first, then func, like ima_must_measure
and ima_get_action. ima_inode_post_setattr() assumes that.
Signed-off-by: Dmitry Kasatkin <dmitry.kasatkin@intel.com>
Signed-off-by: Mimi Zohar <zohar@linux.vnet.ibm.com>
Signed-off-by: James Morris <james.l.morris@oracle.com>
Diffstat (limited to 'security/integrity/ima/ima_appraise.c')
-rw-r--r-- | security/integrity/ima/ima_appraise.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/integrity/ima/ima_appraise.c b/security/integrity/ima/ima_appraise.c index 0aa43bde441c..bdc8ba1d1d27 100644 --- a/security/integrity/ima/ima_appraise.c +++ b/security/integrity/ima/ima_appraise.c | |||
@@ -34,7 +34,7 @@ __setup("ima_appraise=", default_appraise_setup); | |||
34 | * | 34 | * |
35 | * Return 1 to appraise | 35 | * Return 1 to appraise |
36 | */ | 36 | */ |
37 | int ima_must_appraise(struct inode *inode, enum ima_hooks func, int mask) | 37 | int ima_must_appraise(struct inode *inode, int mask, enum ima_hooks func) |
38 | { | 38 | { |
39 | if (!ima_appraise) | 39 | if (!ima_appraise) |
40 | return 0; | 40 | return 0; |