mirror of
https://github.com/S3NEO/android_kernel_samsung_msm8226.git
synced 2024-11-07 03:47:13 +00:00
should_remove_suid(): inode->i_mode is umode_t
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
52ef0c042b
commit
649fc7b1b0
1 changed files with 1 additions and 1 deletions
|
@ -1968,7 +1968,7 @@ EXPORT_SYMBOL(read_cache_page);
|
|||
*/
|
||||
int should_remove_suid(struct dentry *dentry)
|
||||
{
|
||||
mode_t mode = dentry->d_inode->i_mode;
|
||||
umode_t mode = dentry->d_inode->i_mode;
|
||||
int kill = 0;
|
||||
|
||||
/* suid always must be killed */
|
||||
|
|
Loading…
Reference in a new issue