summaryrefslogtreecommitdiffstats
path: root/include/rpc/auth_unix.h
diff options
context:
space:
mode:
authorpfg <pfg@FreeBSD.org>2012-10-02 19:00:56 +0000
committerpfg <pfg@FreeBSD.org>2012-10-02 19:00:56 +0000
commit801a570273e78622987dcab8701b018ed637f465 (patch)
treeaa44b26240a05517bc18100b05e2fdf7e2618175 /include/rpc/auth_unix.h
parentb94c59684cdb3c9b3b7ba7b02eefbdc58be1e551 (diff)
downloadFreeBSD-src-801a570273e78622987dcab8701b018ed637f465.zip
FreeBSD-src-801a570273e78622987dcab8701b018ed637f465.tar.gz
RPC: Convert all uid and gid variables of the type uid_t and gid_t.
This matches what upstream (OpenSolaris) does. Tested by: David Wolfskill Obtained from: Bull GNU/Linux NFSv4 project (libtirpc) MFC after: 3 days
Diffstat (limited to 'include/rpc/auth_unix.h')
-rw-r--r--include/rpc/auth_unix.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/rpc/auth_unix.h b/include/rpc/auth_unix.h
index 48373b2..08e1569 100644
--- a/include/rpc/auth_unix.h
+++ b/include/rpc/auth_unix.h
@@ -60,10 +60,10 @@
struct authunix_parms {
u_long aup_time;
char *aup_machname;
- int aup_uid;
- int aup_gid;
+ uid_t aup_uid;
+ gid_t aup_gid;
u_int aup_len;
- int *aup_gids;
+ gid_t *aup_gids;
};
#define authsys_parms authunix_parms
OpenPOWER on IntegriCloud