diff options
Diffstat (limited to 'crypto/krb5/src/lib/rpc/authunix_prot.c')
-rw-r--r-- | crypto/krb5/src/lib/rpc/authunix_prot.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/krb5/src/lib/rpc/authunix_prot.c b/crypto/krb5/src/lib/rpc/authunix_prot.c index 512d5a51b70c..92276c3ad434 100644 --- a/crypto/krb5/src/lib/rpc/authunix_prot.c +++ b/crypto/krb5/src/lib/rpc/authunix_prot.c @@ -58,7 +58,8 @@ xdr_authunix_parms(XDR *xdrs, struct authunix_parms *p) && xdr_int(xdrs, &(p->aup_uid)) && xdr_int(xdrs, &(p->aup_gid)) && xdr_array(xdrs, (caddr_t *)&(p->aup_gids), - &(p->aup_len), NGRPS, sizeof(int), xdr_int) ) { + &(p->aup_len), NGRPS, sizeof(int), + (xdrproc_t)xdr_int)) { return (TRUE); } return (FALSE); |