diff options
author | Jann Horn <jann@thejh.net> | 2015-09-18 23:41:23 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-10-22 14:49:29 -0700 |
commit | e716af1ed89ba0a44094e149939810dca2172226 (patch) | |
tree | fcd3115be5f26b43c18e17f239e004c62c401deb | |
parent | f00eadd34d9f1392daa6a014f72b9296a242a95e (diff) | |
download | lwn-e716af1ed89ba0a44094e149939810dca2172226.tar.gz lwn-e716af1ed89ba0a44094e149939810dca2172226.zip |
security: fix typo in security_task_prctl
commit b7f76ea2ef6739ee484a165ffbac98deb855d3d3 upstream.
Signed-off-by: Jann Horn <jann@thejh.net>
Reviewed-by: Andy Lutomirski <luto@kernel.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | include/linux/security.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/security.h b/include/linux/security.h index 79d85ddf8093..2f4c1f7aa7db 100644 --- a/include/linux/security.h +++ b/include/linux/security.h @@ -946,7 +946,7 @@ static inline int security_task_prctl(int option, unsigned long arg2, unsigned long arg4, unsigned long arg5) { - return cap_task_prctl(option, arg2, arg3, arg3, arg5); + return cap_task_prctl(option, arg2, arg3, arg4, arg5); } static inline void security_task_to_inode(struct task_struct *p, struct inode *inode) |