2010-05-27 Ralf Corsépius <ralf.corsepius@rtems.org>

* librpc/src/rpc/rtems_portmapper.c: Reflect changes to librpc.
This commit is contained in:
Ralf Corsepius
2010-05-27 07:37:32 +00:00
parent 1f5986bf65
commit 9363800c34
2 changed files with 11 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
2010-05-27 Ralf Corsépius <ralf.corsepius@rtems.org>
* librpc/src/rpc/rtems_portmapper.c: Reflect changes to librpc.
2010-05-27 Ralf Corsépius <ralf.corsepius@rtems.org>
* librpc/include/rpc/clnt.h, librpc/include/rpc/rpc_msg.h,

View File

@@ -364,8 +364,10 @@ xdr_rmtcall_result(
static bool_t
xdr_opaque_parms(
XDR *xdrs,
struct rmtcallargs *cap )
void *args,
... )
{
struct rmtcallargs *cap = (struct rmtcallargs *) args;
return (xdr_opaque(xdrs, cap->rmt_args.args, cap->rmt_args.arglen));
}
@@ -376,9 +378,11 @@ xdr_opaque_parms(
*/
static bool_t
xdr_len_opaque_parms(
register XDR *xdrs,
struct rmtcallargs *cap )
XDR *xdrs,
void *args,
... )
{
struct rmtcallargs *cap = (struct rmtcallargs *) args;
register u_int beginpos, lowpos, highpos, currpos, pos;
beginpos = lowpos = pos = xdr_getpos(xdrs);