Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 79661
b: refs/heads/master
c: 86d61d8
h: refs/heads/master
i:
  79659: e20bdd9
v: v3
  • Loading branch information
Trond Myklebust authored and Trond Myklebust committed Jan 30, 2008
1 parent b096e0f commit 49be109
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 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: b454ae906085cf7774fb4756746680c9b03b6f84
refs/heads/master: 86d61d8638ddf9cdf87df26c7fa69b2804425fbe
12 changes: 5 additions & 7 deletions trunk/net/sunrpc/rpcb_clnt.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ struct rpcbind_args {
u32 r_vers;
u32 r_prot;
unsigned short r_port;
char * r_netid;
char r_addr[RPCBIND_MAXUADDRLEN];
char * r_owner;
const char * r_netid;
const char * r_addr;
const char * r_owner;
};

static struct rpc_procinfo rpcb_procedures2[];
Expand Down Expand Up @@ -358,10 +358,8 @@ void rpcb_getport_async(struct rpc_task *task)
map->r_prot = xprt->prot;
map->r_port = 0;
map->r_xprt = xprt_get(xprt);
map->r_netid = (char *)rpc_peeraddr2str(clnt, RPC_DISPLAY_NETID);
memcpy(map->r_addr,
rpc_peeraddr2str(rpcb_clnt, RPC_DISPLAY_UNIVERSAL_ADDR),
sizeof(map->r_addr));
map->r_netid = rpc_peeraddr2str(clnt, RPC_DISPLAY_NETID);
map->r_addr = rpc_peeraddr2str(rpcb_clnt, RPC_DISPLAY_UNIVERSAL_ADDR);
map->r_owner = RPCB_OWNER_STRING; /* ignored for GETADDR */

child = rpcb_call_async(rpcb_clnt, map, xprt->bind_index);
Expand Down

0 comments on commit 49be109

Please sign in to comment.