diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-06-19 11:54:42 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-07-20 01:43:08 -0400 |
commit | 78f32a9b479e9b9f1ce2bf620a7602c1cdbc4c8e (patch) | |
tree | 1c1d61bbe0587edb29f1290efaafcdeee0cb814e /fs/namei.c | |
parent | 6f2861097467852f2271c2b40f9c3d1d01757048 (diff) |
switch path_init() to exec_permission()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/namei.c')
-rw-r--r-- | fs/namei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/namei.c b/fs/namei.c index 7c8a93042e63..cf2554635a1c 100644 --- a/fs/namei.c +++ b/fs/namei.c | |||
@@ -1554,7 +1554,7 @@ static int path_init(int dfd, const char *name, unsigned int flags, | |||
1554 | if (!S_ISDIR(dentry->d_inode->i_mode)) | 1554 | if (!S_ISDIR(dentry->d_inode->i_mode)) |
1555 | goto fput_fail; | 1555 | goto fput_fail; |
1556 | 1556 | ||
1557 | retval = file_permission(file, MAY_EXEC); | 1557 | retval = exec_permission(dentry->d_inode, 0); |
1558 | if (retval) | 1558 | if (retval) |
1559 | goto fput_fail; | 1559 | goto fput_fail; |
1560 | } | 1560 | } |