aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/nfs
diff options
context:
space:
mode:
authorRick Macklem <rmacklem@FreeBSD.org>2017-04-21 11:48:12 +0000
committerRick Macklem <rmacklem@FreeBSD.org>2017-04-21 11:48:12 +0000
commitb843ada7aa19e287fd41cf896d9eb05d765565cf (patch)
tree7f0dd8986db08c58e132318545f11b3232a4610b /sys/fs/nfs
parentd109d8adc7c0b85d97680917b3da60ff12ebe587 (diff)
downloadsrc-b843ada7aa19e287fd41cf896d9eb05d765565cf.tar.gz
src-b843ada7aa19e287fd41cf896d9eb05d765565cf.zip
Revert r317240. I didn't realize there were defined constants for
uid/gid values in sys/conf.h. I will do another commit using those.
Notes
Notes: svn path=/head/; revision=317251
Diffstat (limited to 'sys/fs/nfs')
-rw-r--r--sys/fs/nfs/nfs_commonsubs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/nfs/nfs_commonsubs.c b/sys/fs/nfs/nfs_commonsubs.c
index cc701e0a0568..6625180f1379 100644
--- a/sys/fs/nfs/nfs_commonsubs.c
+++ b/sys/fs/nfs/nfs_commonsubs.c
@@ -63,8 +63,8 @@ int nfsrv_useacl = 1;
struct nfssockreq nfsrv_nfsuserdsock;
int nfsrv_nfsuserd = 0;
struct nfsreqhead nfsd_reqq;
-uid_t nfsrv_defaultuid = 65534;
-gid_t nfsrv_defaultgid = 65533;
+uid_t nfsrv_defaultuid;
+gid_t nfsrv_defaultgid;
int nfsrv_lease = NFSRV_LEASE;
int ncl_mbuf_mlen = MLEN;
int nfsd_enable_stringtouid = 0;