svn commit: r202136 - stable/8/sys/kern
Brooks Davis
brooks at FreeBSD.org
Tue Jan 12 06:09:56 UTC 2010
Author: brooks
Date: Tue Jan 12 06:09:56 2010
New Revision: 202136
URL: http://svn.freebsd.org/changeset/base/202136
Log:
MFC r201953:
Correct the explination text for the kern.ngroups. It reflects the
number of supplemental groups, not the total number of groups.
Modified:
stable/8/sys/kern/kern_mib.c
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/pf/ (props changed)
stable/8/sys/dev/xen/xenpci/ (props changed)
Modified: stable/8/sys/kern/kern_mib.c
==============================================================================
--- stable/8/sys/kern/kern_mib.c Tue Jan 12 06:04:32 2010 (r202135)
+++ stable/8/sys/kern/kern_mib.c Tue Jan 12 06:09:56 2010 (r202136)
@@ -125,7 +125,8 @@ SYSCTL_INT(_kern, KERN_POSIX1, posix1ver
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");
More information about the svn-src-stable-8
mailing list