From owner-freebsd-doc@FreeBSD.ORG Fri Aug 12 21:30:27 2005 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B69316A41F for ; Fri, 12 Aug 2005 21:30:27 +0000 (GMT) (envelope-from lulf@kerneled.org) Received: from fri.itea.ntnu.no (fri.itea.ntnu.no [129.241.7.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0033F43D46 for ; Fri, 12 Aug 2005 21:30:26 +0000 (GMT) (envelope-from lulf@kerneled.org) Received: from localhost (localhost [127.0.0.1]) by fri.itea.ntnu.no (Postfix) with ESMTP id 648E27F10 for ; Fri, 12 Aug 2005 23:30:25 +0200 (CEST) Received: from vimes (m021h.studby.ntnu.no [129.241.135.21]) by fri.itea.ntnu.no (Postfix) with ESMTP for ; Fri, 12 Aug 2005 23:30:24 +0200 (CEST) Received: by vimes (Postfix, from userid 1001) id F14716442; Fri, 12 Aug 2005 23:30:28 +0200 (CEST) Date: Fri, 12 Aug 2005 23:30:28 +0200 From: Ulf Lilleengen To: freebsd-doc@freebsd.org Message-ID: <20050812213028.GA14020@vimes.djelibeybi> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="ZPt4rx8FFjLCG7dd" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i X-Content-Scanned: with sophos and spamassassin at mailgw.ntnu.no. Subject: [PATCH] No manpage links for getgr*_r functions X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Aug 2005 21:30:27 -0000 --ZPt4rx8FFjLCG7dd Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi. This patch links the getgrnam_r and other threadsafe group functions to getgrent manpage. - Ulf Lilleengen --ZPt4rx8FFjLCG7dd Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="grent_manpage.diff" Index: lib/libc/gen/Makefile.inc =================================================================== RCS file: /home/cvs/fbsd/src/lib/libc/gen/Makefile.inc,v retrieving revision 1.121 diff -u -r1.121 Makefile.inc --- lib/libc/gen/Makefile.inc 11 May 2005 14:07:25 -0000 1.121 +++ lib/libc/gen/Makefile.inc 12 Aug 2005 21:16:35 -0000 @@ -94,7 +94,8 @@ getfsent.3 getfstype.3 getfsent.3 setfsent.3 \ getfsent.3 setfstab.3 getfsent.3 getfstab.3 MLINKS+=getgrent.3 endgrent.3 getgrent.3 getgrgid.3 getgrent.3 getgrnam.3 \ - getgrent.3 setgrent.3 getgrent.3 setgroupent.3 + getgrent.3 setgrent.3 getgrent.3 setgroupent.3 getgrent.3 getgrent_r.3 \ + getgrent.3 getgrnam_r.3 getgrent.3 getgrgid_r.3 MLINKS+=gethostname.3 sethostname.3 MLINKS+=getnetgrent.3 endnetgrent.3 getnetgrent.3 innetgr.3 \ getnetgrent.3 setnetgrent.3 --ZPt4rx8FFjLCG7dd--