diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-07-27 14:04:25 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-03 22:55:17 -0500 |
commit | 93d3a10ef4fdfd4b6d1a3f09b645cd08f74a8115 (patch) | |
tree | 1768645382e04c139aee8283da06238e2073dea4 | |
parent | 2570ebbd1f1ce1ef31f568b0660354fc59424be2 (diff) | |
download | op-kernel-dev-93d3a10ef4fdfd4b6d1a3f09b645cd08f74a8115.zip op-kernel-dev-93d3a10ef4fdfd4b6d1a3f09b645cd08f74a8115.tar.gz |
auditsc: propage umode_t
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
-rw-r--r-- | kernel/auditsc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/auditsc.c b/kernel/auditsc.c index 7a074d6..e7fe2b0 100644 --- a/kernel/auditsc.c +++ b/kernel/auditsc.c @@ -308,7 +308,7 @@ static int audit_match_perm(struct audit_context *ctx, int mask) static int audit_match_filetype(struct audit_context *ctx, int which) { unsigned index = which & ~S_IFMT; - mode_t mode = which & S_IFMT; + umode_t mode = which & S_IFMT; if (unlikely(!ctx)) return 0; @@ -1502,7 +1502,7 @@ static void audit_log_exit(struct audit_context *context, struct task_struct *ts if (n->ino != (unsigned long)-1) { audit_log_format(ab, " inode=%lu" - " dev=%02x:%02x mode=%#o" + " dev=%02x:%02x mode=%#ho" " ouid=%u ogid=%u rdev=%02x:%02x", n->ino, MAJOR(n->dev), |