diff options
author | J. Bruce Fields <bfields@redhat.com> | 2015-11-20 23:45:35 +0300 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2015-11-24 20:39:16 +0300 |
commit | 6496500cf15f29ac8afc565e2e4b6f92a1324860 (patch) | |
tree | 11b24d4171b2c6beefdd38d37add9f6149424c05 /net/sunrpc/svcauth_unix.c | |
parent | d3f03403a8735cebfcc16db4edfbf07c5c7421f5 (diff) | |
download | linux-6496500cf15f29ac8afc565e2e4b6f92a1324860.tar.xz |
svcrpc: move some initialization to common code
Minor cleanup, no change in behavior.
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'net/sunrpc/svcauth_unix.c')
-rw-r--r-- | net/sunrpc/svcauth_unix.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/net/sunrpc/svcauth_unix.c b/net/sunrpc/svcauth_unix.c index 621ca7b4a155..dfacdc95b3f5 100644 --- a/net/sunrpc/svcauth_unix.c +++ b/net/sunrpc/svcauth_unix.c @@ -728,10 +728,6 @@ svcauth_null_accept(struct svc_rqst *rqstp, __be32 *authp) struct kvec *resv = &rqstp->rq_res.head[0]; struct svc_cred *cred = &rqstp->rq_cred; - cred->cr_group_info = NULL; - cred->cr_principal = NULL; - rqstp->rq_client = NULL; - if (argv->iov_len < 3*4) return SVC_GARBAGE; @@ -794,10 +790,6 @@ svcauth_unix_accept(struct svc_rqst *rqstp, __be32 *authp) u32 slen, i; int len = argv->iov_len; - cred->cr_group_info = NULL; - cred->cr_principal = NULL; - rqstp->rq_client = NULL; - if ((len -= 3*4) < 0) return SVC_GARBAGE; |