diff options
Diffstat (limited to 'libc/inet/rpc/authunix_prot.c')
-rw-r--r-- | libc/inet/rpc/authunix_prot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/inet/rpc/authunix_prot.c b/libc/inet/rpc/authunix_prot.c index 34d1d70e7..07a2ca906 100644 --- a/libc/inet/rpc/authunix_prot.c +++ b/libc/inet/rpc/authunix_prot.c @@ -56,7 +56,7 @@ register 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); |