From 9363800c344177d81a5273a8a5636cc51bfdfe0e Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Thu, 27 May 2010 07:37:32 +0000 Subject: =?UTF-8?q?2010-05-27=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * librpc/src/rpc/rtems_portmapper.c: Reflect changes to librpc. --- cpukit/librpc/src/rpc/rtems_portmapper.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'cpukit/librpc/src') diff --git a/cpukit/librpc/src/rpc/rtems_portmapper.c b/cpukit/librpc/src/rpc/rtems_portmapper.c index 1fc035543f..9d327b5ded 100644 --- a/cpukit/librpc/src/rpc/rtems_portmapper.c +++ b/cpukit/librpc/src/rpc/rtems_portmapper.c @@ -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); -- cgit v1.2.3