diff options
author | peter <peter@FreeBSD.org> | 2001-07-26 23:05:35 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2001-07-26 23:05:35 +0000 |
commit | 0cd2d90484dfbd9cf30de6bb20ac301aaf8732a1 (patch) | |
tree | fb85d6d5c284cbe012e23b4cd9cd10d4bb64dd28 | |
parent | 2165eda637c17dbb7e994f2f641a71f785cc48ed (diff) | |
download | FreeBSD-src-0cd2d90484dfbd9cf30de6bb20ac301aaf8732a1.zip FreeBSD-src-0cd2d90484dfbd9cf30de6bb20ac301aaf8732a1.tar.gz |
Move MAXUSERS out of opt_param.h to make sure that other code doesn't
use it rather than the tunable version.
-rw-r--r-- | sys/conf/options | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/conf/options b/sys/conf/options index dca25f1..b58eaf4 100644 --- a/sys/conf/options +++ b/sys/conf/options @@ -165,13 +165,13 @@ UFS_DIRHASH opt_ufs.h # they won't make any difference yet). NFS_ROOT opt_nfsroot.h -# Options used only in param.c. +# Options used only in subr_param.c. HZ opt_param.h MAXFILES opt_param.h -MAXUSERS opt_param.h NBUF opt_param.h NMBCLUSTERS opt_param.h NSFBUFS opt_param.h +MAXUSERS # Generic SCSI options. CAM_MAX_HIGHPOWER opt_cam.h |