Author: brooks
Date: Sat Jan  9 23:22:31 2010
New Revision: 201953
URL: http://svn.freebsd.org/changeset/base/201953

Log:
  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

Modified:
  head/sys/kern/kern_mib.c

Modified: head/sys/kern/kern_mib.c
==============================================================================
--- head/sys/kern/kern_mib.c    Sat Jan  9 23:19:38 2010        (r201952)
+++ head/sys/kern/kern_mib.c    Sat Jan  9 23:22:31 2010        (r201953)
@@ -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");
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to