summaryrefslogtreecommitdiffstats
path: root/sys/fs/nfs/nfs.h
diff options
context:
space:
mode:
authorrmacklem <rmacklem@FreeBSD.org>2009-06-20 17:11:07 +0000
committerrmacklem <rmacklem@FreeBSD.org>2009-06-20 17:11:07 +0000
commit7dbb188309c3e49d03f3cc123417b010dc0c81da (patch)
tree8226c518996383d322748c9226e91313e4eb6ee4 /sys/fs/nfs/nfs.h
parent4f053b746068039dffb792ad21ebb9873a095484 (diff)
downloadFreeBSD-src-7dbb188309c3e49d03f3cc123417b010dc0c81da.zip
FreeBSD-src-7dbb188309c3e49d03f3cc123417b010dc0c81da.tar.gz
Replace RPCAUTH_UNIXGIDS with NFS_MAXGRPS so that nfscbd.c will build.
Approved by: kib (mentor)
Diffstat (limited to 'sys/fs/nfs/nfs.h')
-rw-r--r--sys/fs/nfs/nfs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/nfs/nfs.h b/sys/fs/nfs/nfs.h
index d02c754..0325d3d 100644
--- a/sys/fs/nfs/nfs.h
+++ b/sys/fs/nfs/nfs.h
@@ -405,12 +405,12 @@ typedef struct {
/*
* Store uid, gid creds that were used when the stateid was acquired.
- * The RPC layer allows RPCAUTH_UNIXGIDS + 1 groups to go out on the wire,
+ * The RPC layer allows NFS_MAXGRPS + 1 groups to go out on the wire,
* so that's how many gets stored here.
*/
struct nfscred {
uid_t nfsc_uid;
- gid_t nfsc_groups[RPCAUTH_UNIXGIDS + 1];
+ gid_t nfsc_groups[NFS_MAXGRPS + 1];
int nfsc_ngroups;
};
OpenPOWER on IntegriCloud