summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_mib.c
diff options
context:
space:
mode:
authorbrooks <brooks@FreeBSD.org>2010-01-09 23:22:31 +0000
committerbrooks <brooks@FreeBSD.org>2010-01-09 23:22:31 +0000
commit5e7cdd35de634f8baea157748d88041ab74d6b1c (patch)
treec18b27153b109fda876caee2686c882bf99a458c /sys/kern/kern_mib.c
parent56d4794e7235f69c1e7230e6b905785d8a053e40 (diff)
downloadFreeBSD-src-5e7cdd35de634f8baea157748d88041ab74d6b1c.zip
FreeBSD-src-5e7cdd35de634f8baea157748d88041ab74d6b1c.tar.gz
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
Diffstat (limited to 'sys/kern/kern_mib.c')
-rw-r--r--sys/kern/kern_mib.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/kern_mib.c b/sys/kern/kern_mib.c
index 04e4dc0..78382c7 100644
--- a/sys/kern/kern_mib.c
+++ b/sys/kern/kern_mib.c
@@ -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");
OpenPOWER on IntegriCloud