diff options
| author | 2016-03-25 14:56:23 -0400 | |
|---|---|---|
| committer | 2016-03-28 00:47:25 -0400 | |
| commit | be01f9f28e66fa846f02196eb047c6bc445642db (patch) | |
| tree | 964e7f7729334d9a2be841f4741695dcbc3a3e38 /include/linux/lsm_hooks.h | |
| parent | constify security_sb_mount() (diff) | |
| download | linux-rng-be01f9f28e66fa846f02196eb047c6bc445642db.tar.xz linux-rng-be01f9f28e66fa846f02196eb047c6bc445642db.zip | |
constify chmod_common/security_path_chmod
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/lsm_hooks.h')
| -rw-r--r-- | include/linux/lsm_hooks.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/lsm_hooks.h b/include/linux/lsm_hooks.h index 47117751f4eb..294fdfe902bf 100644 --- a/include/linux/lsm_hooks.h +++ b/include/linux/lsm_hooks.h @@ -1374,7 +1374,7 @@ union security_list_options { int (*path_rename)(struct path *old_dir, struct dentry *old_dentry, struct path *new_dir, struct dentry *new_dentry); - int (*path_chmod)(struct path *path, umode_t mode); + int (*path_chmod)(const struct path *path, umode_t mode); int (*path_chown)(const struct path *path, kuid_t uid, kgid_t gid); int (*path_chroot)(struct path *path); #endif |
