diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2018-07-10 13:25:29 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2018-07-12 10:04:15 -0400 |
commit | e3f20ae21079ecac282df65d83865c5771f4bca0 (patch) | |
tree | 4235920fcf7c25615ccd4fbfc79099e347dde4bc /fs/open.c | |
parent | ae2bb293a3e8adbc54d08cede5afc22929030c03 (diff) | |
download | linux-next-e3f20ae21079ecac282df65d83865c5771f4bca0.tar.gz |
security_file_open(): lose cred argument
Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/open.c')
-rw-r--r-- | fs/open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/open.c b/fs/open.c index 0a9f00b7f3d5..4c65edefa487 100644 --- a/fs/open.c +++ b/fs/open.c @@ -776,7 +776,7 @@ static int do_dentry_open(struct file *f, goto cleanup_all; } - error = security_file_open(f, f->f_cred); + error = security_file_open(f); if (error) goto cleanup_all; |