diff options
Diffstat (limited to 'sunrpc/svc_authux.c')
-rw-r--r-- | sunrpc/svc_authux.c | 7 |
1 files changed, 3 insertions, 4 deletions
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; } |