From owner-p4-projects@FreeBSD.ORG Sat May 23 18:40:11 2009 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 63F941065673; Sat, 23 May 2009 18:40:11 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 23383106564A for ; Sat, 23 May 2009 18:40:11 +0000 (UTC) (envelope-from trasz@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EAAC38FC1A for ; Sat, 23 May 2009 18:40:10 +0000 (UTC) (envelope-from trasz@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n4NIeAD5083301 for ; Sat, 23 May 2009 18:40:10 GMT (envelope-from trasz@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n4NIeAgP083299 for perforce@freebsd.org; Sat, 23 May 2009 18:40:10 GMT (envelope-from trasz@freebsd.org) Date: Sat, 23 May 2009 18:40:10 GMT Message-Id: <200905231840.n4NIeAgP083299@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to trasz@freebsd.org using -f From: Edward Tomasz Napierala To: Perforce Change Reviews Cc: Subject: PERFORCE change 162595 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 May 2009 18:40:12 -0000 http://perforce.freebsd.org/chv.cgi?CH=162595 Change 162595 by trasz@trasz_victim on 2009/05/23 18:40:09 Use proper roff construct for tables, as suggested by rwatson@. Affected files ... .. //depot/projects/soc2008/trasz_nfs4acl/lib/libc/posix1e/acl_add_flag_np.3#5 edit .. //depot/projects/soc2008/trasz_nfs4acl/lib/libc/posix1e/acl_set_entry_type_np.3#2 edit .. //depot/projects/soc2008/trasz_nfs4acl/lib/libc/posix1e/acl_to_text.3#3 edit Differences ... ==== //depot/projects/soc2008/trasz_nfs4acl/lib/libc/posix1e/acl_add_flag_np.3#5 (text+ko) ==== @@ -52,12 +52,12 @@ .Pp Valid values are: .Pp -.Bd -literal -offset indent -compact -ACL_ENTRY_FILE_INHERIT Will be inherited by files. -ACL_ENTRY_DIRECTORY_INHERIT Will be inherited by directories. -ACL_ENTRY_NO_PROPAGATE_INHERIT Will not propagate. -ACL_ENTRY_INHERIT_ONLY Inherit-only. -.Ed +.Bl -column -offset 3n "ACL_ENTRY_NO_PROPAGATE_INHERIT" +.It ACL_ENTRY_FILE_INHERIT Will be inherited by files. +.It ACL_ENTRY_DIRECTORY_INHERIT Will be inherited by directories. +.It ACL_ENTRY_NO_PROPAGATE_INHERIT Will not propagate. +.It ACL_ENTRY_INHERIT_ONLY Inherit-only. +.El .Sh RETURN VALUES .Rv -std acl_add_flag_np .Sh ERRORS ==== //depot/projects/soc2008/trasz_nfs4acl/lib/libc/posix1e/acl_set_entry_type_np.3#2 (text+ko) ==== @@ -49,10 +49,10 @@ .Pp Valid values are: .Pp -.Bd -literal -offset indent -compact -ACL_ENTRY_TYPE_ALLOW "allow" type entry -ACL_ENTRY_TYPE_DENY "deny" type entry -.Ed +.Bl -column -offset 3n "ACL_ENTRY_TYPE_ALLOW" +.It ACL_ENTRY_TYPE_ALLOW "allow" type entry +.It ACL_ENTRY_TYPE_DENY "deny" type entry +.El .Pp This call brands the ACL as NFS4. .Sh RETURN VALUES ==== //depot/projects/soc2008/trasz_nfs4acl/lib/libc/posix1e/acl_to_text.3#3 (text+ko) ==== @@ -67,11 +67,11 @@ .Em or Ns 'ing the following values .Pp -.Bd -literal -offset indent -compact -ACL_TEXT_VERBOSE format ACL using verbose form -ACL_TEXT_NUMERIC_IDS do not resolve IDs into user or group names -ACL_TEXT_APPEND_ID in addition to user and group names, append numeric IDs -.Ed +.Bl -column -offset 3n "ACL_TEXT_NUMERIC_IDS" +.It ACL_TEXT_VERBOSE Format ACL using verbose form +.It ACL_TEXT_NUMERIC_IDS Do not resolve IDs into user or group names +.It ACL_TEXT_APPEND_ID In addition to user and group names, append numeric IDs +.El .Pp This function allocates any memory necessary to contain the string and returns a pointer to the string.