Date: Mon, 27 Oct 2014 04:09:24 +0000 (UTC) From: Mark Johnston <markj@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r273717 - head/lib/libc/gen Message-ID: <201410270409.s9R49Ola023318@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: markj Date: Mon Oct 27 04:09:23 2014 New Revision: 273717 URL: https://svnweb.freebsd.org/changeset/base/273717 Log: getgrouplist(3) was reimplemented in terms of getgrent_r(3) in r174547, so this bug is no longer valid. MFC after: 3 days Modified: head/lib/libc/gen/getgrouplist.3 head/lib/libc/gen/initgroups.3 Modified: head/lib/libc/gen/getgrouplist.3 ============================================================================== --- head/lib/libc/gen/getgrouplist.3 Mon Oct 27 01:10:40 2014 (r273716) +++ head/lib/libc/gen/getgrouplist.3 Mon Oct 27 04:09:23 2014 (r273717) @@ -28,7 +28,7 @@ .\" @(#)getgrouplist.3 8.1 (Berkeley) 6/9/93 .\" $FreeBSD$ .\" -.Dd February 20, 2012 +.Dd October 26, 2014 .Dt GETGROUPLIST 3 .Os .Sh NAME @@ -80,13 +80,3 @@ The .Fn getgrouplist function first appeared in .Bx 4.4 . -.Sh BUGS -The -.Fn getgrouplist -function -uses the routines based on -.Xr getgrent 3 . -If the invoking program uses any of these routines, -the group structure will -be overwritten in the call to -.Fn getgrouplist . Modified: head/lib/libc/gen/initgroups.3 ============================================================================== --- head/lib/libc/gen/initgroups.3 Mon Oct 27 01:10:40 2014 (r273716) +++ head/lib/libc/gen/initgroups.3 Mon Oct 27 04:09:23 2014 (r273717) @@ -28,7 +28,7 @@ .\" @(#)initgroups.3 8.1 (Berkeley) 6/4/93 .\" $FreeBSD$ .\" -.Dd June 4, 1993 +.Dd October 26, 2014 .Dt INITGROUPS 3 .Os .Sh NAME @@ -80,14 +80,3 @@ The .Fn initgroups function appeared in .Bx 4.2 . -.Sh BUGS -The -.Fn getgrouplist -function called by -.Fn initgroups -uses the routines based on -.Xr getgrent 3 . -If the invoking program uses any of these routines, -the group structure will -be overwritten in the call to -.Fn initgroups .
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410270409.s9R49Ola023318>