diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2002-04-28 15:18:50 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2002-04-28 15:18:50 +0000 |
| commit | f249dbcc7149848de00cd8f4e93fe140dfa3f219 (patch) | |
| tree | d7c3c2d08e4ff1d59c15bcb1a7ee8e74f001cb1d /lib/libc/rpc/clnt_raw.c | |
| parent | 6c28b67b1e004e45f13067a61ca68a011848b065 (diff) | |
Notes
Diffstat (limited to 'lib/libc/rpc/clnt_raw.c')
| -rw-r--r-- | lib/libc/rpc/clnt_raw.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/libc/rpc/clnt_raw.c b/lib/libc/rpc/clnt_raw.c index b591bf658438..ed3aecd7eb9f 100644 --- a/lib/libc/rpc/clnt_raw.c +++ b/lib/libc/rpc/clnt_raw.c @@ -76,10 +76,10 @@ static struct clntraw_private { u_int mcnt; } *clntraw_private; -static enum clnt_stat clnt_raw_call(CLIENT *, rpcproc_t, xdrproc_t, caddr_t, - xdrproc_t, caddr_t, struct timeval); +static enum clnt_stat clnt_raw_call(CLIENT *, rpcproc_t, xdrproc_t, void *, + xdrproc_t, void *, struct timeval); static void clnt_raw_geterr(CLIENT *, struct rpc_err *); -static bool_t clnt_raw_freeres(CLIENT *, xdrproc_t, caddr_t); +static bool_t clnt_raw_freeres(CLIENT *, xdrproc_t, void *); static void clnt_raw_abort(CLIENT *); static bool_t clnt_raw_control(CLIENT *, u_int, char *); static void clnt_raw_destroy(CLIENT *); @@ -145,9 +145,9 @@ clnt_raw_call(h, proc, xargs, argsp, xresults, resultsp, timeout) CLIENT *h; rpcproc_t proc; xdrproc_t xargs; - caddr_t argsp; + void *argsp; xdrproc_t xresults; - caddr_t resultsp; + void *resultsp; struct timeval timeout; { struct clntraw_private *clp = clntraw_private; @@ -251,7 +251,7 @@ static bool_t clnt_raw_freeres(cl, xdr_res, res_ptr) CLIENT *cl; xdrproc_t xdr_res; - caddr_t res_ptr; + void *res_ptr; { struct clntraw_private *clp = clntraw_private; XDR *xdrs = &clp->xdr_stream; |
