Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 320545
b: refs/heads/master
c: caea33d
h: refs/heads/master
i:
  320543: 5668c95
v: v3
  • Loading branch information
Stanislav Kinsbursky authored and Trond Myklebust committed Jul 31, 2012
1 parent fc04d2b commit 9523cb9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 89d77c8fa8e6d1cb7e2cce95b428be30ddcc6f23
refs/heads/master: caea33da898e4e14f0ba58173e3b7689981d2c0b
4 changes: 2 additions & 2 deletions trunk/net/sunrpc/rpcb_clnt.c
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ static int rpcb_create_local_unix(struct net *net)
if (IS_ERR(clnt)) {
dprintk("RPC: failed to create AF_LOCAL rpcbind "
"client (errno %ld).\n", PTR_ERR(clnt));
result = -PTR_ERR(clnt);
result = PTR_ERR(clnt);
goto out;
}

Expand Down Expand Up @@ -298,7 +298,7 @@ static int rpcb_create_local_net(struct net *net)
if (IS_ERR(clnt)) {
dprintk("RPC: failed to create local rpcbind "
"client (errno %ld).\n", PTR_ERR(clnt));
result = -PTR_ERR(clnt);
result = PTR_ERR(clnt);
goto out;
}

Expand Down

0 comments on commit 9523cb9

Please sign in to comment.