diff options
Diffstat (limited to 'sunrpc/auth_unix.c')
-rw-r--r-- | sunrpc/auth_unix.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sunrpc/auth_unix.c b/sunrpc/auth_unix.c index bb631b4d52..8890a926ba 100644 --- a/sunrpc/auth_unix.c +++ b/sunrpc/auth_unix.c @@ -215,14 +215,15 @@ authunix_marshal(auth, xdrs) static bool_t authunix_validate(auth, verf) register AUTH *auth; - struct opaque_auth verf; + struct opaque_auth *verf; { register struct audata *au; XDR xdrs; - if (verf.oa_flavor == AUTH_SHORT) { + if (verf->oa_flavor == AUTH_SHORT) { au = AUTH_PRIVATE(auth); - xdrmem_create(&xdrs, verf.oa_base, verf.oa_length, XDR_DECODE); + xdrmem_create(&xdrs, verf->oa_base, verf->oa_length, + XDR_DECODE); if (au->au_shcred.oa_base != NULL) { mem_free(au->au_shcred.oa_base, |