svn commit: r317251 - head/sys/fs/nfs
Rick Macklem
rmacklem at FreeBSD.org
Fri Apr 21 11:48:13 UTC 2017
Author: rmacklem
Date: Fri Apr 21 11:48:12 2017
New Revision: 317251
URL: https://svnweb.freebsd.org/changeset/base/317251
Log:
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.
Modified:
head/sys/fs/nfs/nfs_commonsubs.c
Modified: head/sys/fs/nfs/nfs_commonsubs.c
==============================================================================
--- head/sys/fs/nfs/nfs_commonsubs.c Fri Apr 21 10:16:34 2017 (r317250)
+++ head/sys/fs/nfs/nfs_commonsubs.c Fri Apr 21 11:48:12 2017 (r317251)
@@ -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;
More information about the svn-src-all
mailing list