summaryrefslogtreecommitdiff
path: root/src/authunix_prot.c
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2009-01-28 12:44:46 -0500
committerSteve Dickson <steved@redhat.com>2009-01-28 12:44:46 -0500
commit951a1b9b0195cbe58e1e62142e84d7ec4658943f (patch)
treeb8e303fd7f0f5752f9d72f536e0d29d1eea13b60 /src/authunix_prot.c
parent5bc80ccd81e0c7ef185de34e7f34a7766bce0e27 (diff)
downloadti-rpc-951a1b9b0195cbe58e1e62142e84d7ec4658943f.tar.gz
Converted all uid and gid variables of the type uid_t and gid_t.
Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'src/authunix_prot.c')
-rw-r--r--src/authunix_prot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/authunix_prot.c b/src/authunix_prot.c
index 01c1711..79f2fb6 100644
--- a/src/authunix_prot.c
+++ b/src/authunix_prot.c
@@ -57,8 +57,8 @@ xdr_authunix_parms(xdrs, p)
if (xdr_u_long(xdrs, &(p->aup_time))
&& xdr_string(xdrs, &(p->aup_machname), MAX_MACHINE_NAME)
- && xdr_int(xdrs, &(p->aup_uid))
- && xdr_int(xdrs, &(p->aup_gid))
+ && xdr_u_int(xdrs, &(p->aup_uid))
+ && xdr_u_int(xdrs, &(p->aup_gid))
&& xdr_array(xdrs, (caddr_t *)&(p->aup_gids),
&(p->aup_len), NGRPS, sizeof(int), (xdrproc_t)xdr_int) ) {
return (TRUE);