From 8bb4f9da7168ac09dc4e07888319b23e5be57502 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 20 Apr 2002 23:18:22 +0000 Subject: [PATCH] (authnone_create_once): Don't use INTUSE here. --- sunrpc/auth_none.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sunrpc/auth_none.c b/sunrpc/auth_none.c index 4a1b46f2742..6cc0b3013c6 100644 --- a/sunrpc/auth_none.c +++ b/sunrpc/auth_none.c @@ -82,13 +82,13 @@ authnone_create_once (void) ap->no_client.ah_cred = ap->no_client.ah_verf = _null_auth; ap->no_client.ah_ops = &ops; xdrs = &xdr_stream; - INTUSE(xdrmem_create) (xdrs, ap->marshalled_client, - (u_int) MAX_MARSHAL_SIZE, XDR_ENCODE); - (void) INTUSE(xdr_opaque_auth) (xdrs, &ap->no_client.ah_cred); - (void) INTUSE(xdr_opaque_auth) (xdrs, &ap->no_client.ah_verf); + xdrmem_create (xdrs, ap->marshalled_client, + (u_int) MAX_MARSHAL_SIZE, XDR_ENCODE); + (void) xdr_opaque_auth (xdrs, &ap->no_client.ah_cred); + (void) xdr_opaque_auth (xdrs, &ap->no_client.ah_verf); ap->mcnt = XDR_GETPOS (xdrs); XDR_DESTROY (xdrs); -} +} AUTH * authnone_create (void) -- 2.47.2