dect
/
linux-2.6
Archived
13
0
Fork 0

vfs: don't call ima_file_check() unconditionally in nfsd_open()

commit 1e41568d73 ("Take ima_path_check()
in nfsd past dentry_open() in nfsd_open()") moved this code back to its
original location but missed the "else".

Signed-off-by: Chuck Ebbert <cebbert@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Chuck Ebbert 2010-02-15 18:07:39 -05:00 committed by Al Viro
parent 4e70af5631
commit aeaa5ccd64
1 changed files with 2 additions and 1 deletions

View File

@ -752,7 +752,8 @@ nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
flags, current_cred());
if (IS_ERR(*filp))
host_err = PTR_ERR(*filp);
host_err = ima_file_check(*filp, access);
else
host_err = ima_file_check(*filp, access);
out_nfserr:
err = nfserrno(host_err);
out: