diff options
author | Kinglong Mee <kinglongmee@gmail.com> | 2014-05-23 20:53:44 +0800 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2014-05-30 17:32:21 -0400 |
commit | 61a27f08a63ee9460653633d8a9cc5a09dcb9aa5 (patch) | |
tree | a522b6b591a0ceea3a4e5ea027bdbf296e129872 /fs/nfsd/auth.c | |
parent | 0faed901c680b153ca090a766ceda699b55993eb (diff) | |
download | linux-61a27f08a63ee9460653633d8a9cc5a09dcb9aa5.tar.bz2 |
NFSD: Cleanup unused variable in nfsd_setuser()
Commit 8f6c5ffc8987 ("kernel/groups.c: remove return value of
set_groups") removed the last use of "ret".
Signed-off-by: Kinglong Mee <kinglongmee@gmail.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/auth.c')
-rw-r--r-- | fs/nfsd/auth.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/nfsd/auth.c b/fs/nfsd/auth.c index 104232571491..72f44823adbb 100644 --- a/fs/nfsd/auth.c +++ b/fs/nfsd/auth.c @@ -24,7 +24,6 @@ int nfsd_setuser(struct svc_rqst *rqstp, struct svc_export *exp) struct cred *new; int i; int flags = nfsexp_flags(rqstp, exp); - int ret; validate_process_creds(); @@ -85,8 +84,7 @@ int nfsd_setuser(struct svc_rqst *rqstp, struct svc_export *exp) return 0; oom: - ret = -ENOMEM; abort_creds(new); - return ret; + return -ENOMEM; } |