mirror of
https://github.com/torvalds/linux.git
synced 2024-12-31 23:31:29 +00:00
Smack: add missing support for transmute bit in smack_str_from_perm()
This fixes audit logs for granting or denial of permissions to show information about transmute bit. Targeted for git://git.gitorious.org/smack-next/kernel.git Signed-off-by: Rafal Krypa <r.krypa@samsung.com>
This commit is contained in:
parent
d15d9fad16
commit
a87d79ad7c
@ -252,6 +252,8 @@ static inline void smack_str_from_perm(char *string, int access)
|
||||
string[i++] = 'x';
|
||||
if (access & MAY_APPEND)
|
||||
string[i++] = 'a';
|
||||
if (access & MAY_TRANSMUTE)
|
||||
string[i++] = 't';
|
||||
string[i] = '\0';
|
||||
}
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user