aboutsummaryrefslogtreecommitdiffstats
path: root/net/sunrpc
diff options
context:
space:
mode:
Diffstat (limited to 'net/sunrpc')
-rw-r--r--net/sunrpc/rpcb_clnt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/sunrpc/rpcb_clnt.c b/net/sunrpc/rpcb_clnt.c
index e6fb21b19b86..cf2b91613ac6 100644
--- a/net/sunrpc/rpcb_clnt.c
+++ b/net/sunrpc/rpcb_clnt.c
@@ -438,7 +438,7 @@ static int rpcb_decode_getport(struct rpc_rqst *req, __be32 *p,
438 unsigned short *portp) 438 unsigned short *portp)
439{ 439{
440 *portp = (unsigned short) ntohl(*p++); 440 *portp = (unsigned short) ntohl(*p++);
441 dprintk("RPC: rpcb_decode_getport result %u\n", 441 dprintk("RPC: rpcb_decode_getport result %u\n",
442 *portp); 442 *portp);
443 return 0; 443 return 0;
444} 444}
@@ -447,8 +447,8 @@ static int rpcb_decode_set(struct rpc_rqst *req, __be32 *p,
447 unsigned int *boolp) 447 unsigned int *boolp)
448{ 448{
449 *boolp = (unsigned int) ntohl(*p++); 449 *boolp = (unsigned int) ntohl(*p++);
450 dprintk("RPC: rpcb_decode_set result %u\n", 450 dprintk("RPC: rpcb_decode_set: call %s\n",
451 *boolp); 451 (*boolp ? "succeeded" : "failed"));
452 return 0; 452 return 0;
453} 453}
454 454