From b843ada7aa19e287fd41cf896d9eb05d765565cf Mon Sep 17 00:00:00 2001 From: Rick Macklem Date: Fri, 21 Apr 2017 11:48:12 +0000 Subject: [PATCH] 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. --- sys/fs/nfs/nfs_commonsubs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/fs/nfs/nfs_commonsubs.c b/sys/fs/nfs/nfs_commonsubs.c index cc701e0a056..6625180f137 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;