diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-03-25 14:56:23 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-03-28 00:47:25 -0400 |
commit | be01f9f28e66fa846f02196eb047c6bc445642db (patch) | |
tree | 964e7f7729334d9a2be841f4741695dcbc3a3e38 /security/security.c | |
parent | 8a04c43b8741ebb40508d160cf87ca74b70941af (diff) |
constify chmod_common/security_path_chmod
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'security/security.c')
-rw-r--r-- | security/security.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/security.c b/security/security.c index fc567656b16f..b333429fe718 100644 --- a/security/security.c +++ b/security/security.c | |||
@@ -485,7 +485,7 @@ int security_path_truncate(const struct path *path) | |||
485 | return call_int_hook(path_truncate, 0, path); | 485 | return call_int_hook(path_truncate, 0, path); |
486 | } | 486 | } |
487 | 487 | ||
488 | int security_path_chmod(struct path *path, umode_t mode) | 488 | int security_path_chmod(const struct path *path, umode_t mode) |
489 | { | 489 | { |
490 | if (unlikely(IS_PRIVATE(d_backing_inode(path->dentry)))) | 490 | if (unlikely(IS_PRIVATE(d_backing_inode(path->dentry)))) |
491 | return 0; | 491 | return 0; |