From owner-svn-src-head@FreeBSD.ORG Mon Oct 27 04:09:24 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E18E33F9; Mon, 27 Oct 2014 04:09:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CD95F1A3; Mon, 27 Oct 2014 04:09:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9R49OaD023320; Mon, 27 Oct 2014 04:09:24 GMT (envelope-from markj@FreeBSD.org) Received: (from markj@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9R49Ola023318; Mon, 27 Oct 2014 04:09:24 GMT (envelope-from markj@FreeBSD.org) Message-Id: <201410270409.s9R49Ola023318@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: markj set sender to markj@FreeBSD.org using -f From: Mark Johnston Date: Mon, 27 Oct 2014 04:09:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r273717 - head/lib/libc/gen X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Oct 2014 04:09:25 -0000 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 .