diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2010-10-24 22:00:46 (GMT) |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2010-10-24 22:00:46 (GMT) |
commit | 9a84d38031c258a17bb39beed1e500eadee67407 (patch) | |
tree | 30126034db0285c3becd85ddb36f226add98c2d3 | |
parent | 3388bff5cfe91589a912cdc7f00d3aae3aa18adc (diff) | |
download | linux-9a84d38031c258a17bb39beed1e500eadee67407.tar.xz |
SUNRPC: Cleanup duplicate assignment in rpcauth_refreshcred
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
-rw-r--r-- | net/sunrpc/auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/auth.c b/net/sunrpc/auth.c index 36cb660..b457db0 100644 --- a/net/sunrpc/auth.c +++ b/net/sunrpc/auth.c @@ -595,7 +595,7 @@ rpcauth_unwrap_resp(struct rpc_task *task, kxdrproc_t decode, void *rqstp, int rpcauth_refreshcred(struct rpc_task *task) { - struct rpc_cred *cred = task->tk_rqstp->rq_cred; + struct rpc_cred *cred; int err; cred = task->tk_rqstp->rq_cred; |