commit | 9f96392b0ae6aefc02a9b900c3f4889dfafc8402 | [log] [tgz] |
---|---|---|
author | J. Bruce Fields <[email protected]> | Mon Jun 10 16:06:44 2013 -0400 |
committer | J. Bruce Fields <[email protected]> | Thu Aug 01 08:39:30 2013 -0400 |
tree | 5f1fa0cad4aa07cfc5b250aa48818caf95cbde8c | |
parent | 447383d2ba6061bb069da45f95f223a01bba61dd [diff] [blame] |
svcrpc: fix gss_rpc_upcall create error Cc: [email protected] Signed-off-by: J. Bruce Fields <[email protected]>
diff --git a/net/sunrpc/auth_gss/gss_rpc_upcall.c b/net/sunrpc/auth_gss/gss_rpc_upcall.c index d304f41..1e1ccf5 100644 --- a/net/sunrpc/auth_gss/gss_rpc_upcall.c +++ b/net/sunrpc/auth_gss/gss_rpc_upcall.c
@@ -120,7 +120,7 @@ if (IS_ERR(clnt)) { dprintk("RPC: failed to create AF_LOCAL gssproxy " "client (errno %ld).\n", PTR_ERR(clnt)); - result = -PTR_ERR(clnt); + result = PTR_ERR(clnt); *_clnt = NULL; goto out; }