Correct the explination text for the kern.ngroups. It reflects the

number of supplemental groups, not the total number of groups.

MFC after:	3 days
This commit is contained in:
Brooks Davis 2010-01-09 23:22:31 +00:00
parent 91217c1c70
commit 5feedc2575
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=201953

View File

@ -125,7 +125,8 @@ SYSCTL_INT(_kern, KERN_POSIX1, posix1version, CTLFLAG_RD,
0, _POSIX_VERSION, "Version of POSIX attempting to comply to");
SYSCTL_INT(_kern, KERN_NGROUPS, ngroups, CTLFLAG_RD,
0, NGROUPS_MAX, "Maximum number of groups a user can belong to");
0, NGROUPS_MAX,
"Maximum number of supplemental groups a user can belong to");
SYSCTL_INT(_kern, KERN_JOB_CONTROL, job_control, CTLFLAG_RD,
0, 1, "Whether job control is available");