From 5feedc257528d7f983a73c6c51131bb7f0b0b20f Mon Sep 17 00:00:00 2001 From: Brooks Davis Date: Sat, 9 Jan 2010 23:22:31 +0000 Subject: [PATCH] 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 --- sys/kern/kern_mib.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/kern/kern_mib.c b/sys/kern/kern_mib.c index 04e4dc0437b7..78382c7c5c4a 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");