From 7b57bfe5988e476ea40934457dfd1c8a231e2391 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 16 Apr 2011 21:59:36 -0400 Subject: Obsolete RPC implementation in libc. --- sunrpc/svc_authux.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'sunrpc/svc_authux.c') diff --git a/sunrpc/svc_authux.c b/sunrpc/svc_authux.c index 1de08bc9f9..0c6b0242cd 100644 --- a/sunrpc/svc_authux.c +++ b/sunrpc/svc_authux.c @@ -67,8 +67,7 @@ _svcauth_unix (struct svc_req *rqst, struct rpc_msg *msg) aup->aup_machname = area->area_machname; aup->aup_gids = area->area_gids; auth_len = (u_int) msg->rm_call.cb_cred.oa_length; - INTUSE(xdrmem_create) (&xdrs, msg->rm_call.cb_cred.oa_base, auth_len, - XDR_DECODE); + xdrmem_create (&xdrs, msg->rm_call.cb_cred.oa_base, auth_len, XDR_DECODE); buf = XDR_INLINE (&xdrs, auth_len); if (buf != NULL) { @@ -106,10 +105,10 @@ _svcauth_unix (struct svc_req *rqst, struct rpc_msg *msg) goto done; } } - else if (!INTUSE(xdr_authunix_parms) (&xdrs, aup)) + else if (!xdr_authunix_parms (&xdrs, aup)) { xdrs.x_op = XDR_FREE; - (void) INTUSE(xdr_authunix_parms) (&xdrs, aup); + (void) xdr_authunix_parms (&xdrs, aup); stat = AUTH_BADCRED; goto done; } -- cgit 1.4.1