]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(authnone_create_once): Don't use INTUSE here.
authorUlrich Drepper <drepper@redhat.com>
Sat, 20 Apr 2002 23:18:22 +0000 (23:18 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 20 Apr 2002 23:18:22 +0000 (23:18 +0000)
sunrpc/auth_none.c

index 4a1b46f27422dc339d2dab85b71a4293a64dc3f1..6cc0b3013c634c3a5d021f2a45ec12502bf137a4 100644 (file)
@@ -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)