Commit 38359352 authored by Chuck Lever's avatar Chuck Lever Committed by Trond Myklebust

SUNRPC: Correct an rpcbind debugging message

Clean up.
Signed-off-by: default avatarChuck Lever <chuck.lever@oracle.com>
Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent d141d974
...@@ -211,8 +211,9 @@ static int rpcb_create_local(void) ...@@ -211,8 +211,9 @@ static int rpcb_create_local(void)
*/ */
clnt4 = rpc_bind_new_program(clnt, &rpcb_program, RPCBVERS_4); clnt4 = rpc_bind_new_program(clnt, &rpcb_program, RPCBVERS_4);
if (IS_ERR(clnt4)) { if (IS_ERR(clnt4)) {
dprintk("RPC: failed to create local rpcbind v4 " dprintk("RPC: failed to bind second program to "
"cleint (errno %ld).\n", PTR_ERR(clnt4)); "rpcbind v4 client (errno %ld).\n",
PTR_ERR(clnt4));
clnt4 = NULL; clnt4 = NULL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment