Deleted Added
full compact
acl_valid.3 (108410) acl_valid.3 (131504)
1.\"-
2.\" Copyright (c) 2000, 2002 Robert N. M. Watson
3.\" All rights reserved.
4.\"
5.\" This software was developed by Robert Watson for the TrustedBSD Project.
6.\"
7.\" Redistribution and use in source and binary forms, with or without
8.\" modification, are permitted provided that the following conditions

--- 11 unchanged lines hidden (view full) ---

20.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26.\" SUCH DAMAGE.
27.\"
1.\"-
2.\" Copyright (c) 2000, 2002 Robert N. M. Watson
3.\" All rights reserved.
4.\"
5.\" This software was developed by Robert Watson for the TrustedBSD Project.
6.\"
7.\" Redistribution and use in source and binary forms, with or without
8.\" modification, are permitted provided that the following conditions

--- 11 unchanged lines hidden (view full) ---

20.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26.\" SUCH DAMAGE.
27.\"
28.\" $FreeBSD: head/lib/libc/posix1e/acl_valid.3 108410 2002-12-29 20:47:05Z rwatson $
28.\" $FreeBSD: head/lib/libc/posix1e/acl_valid.3 131504 2004-07-02 23:52:20Z ru $
29.\"
30.Dd December 29, 2002
31.Dt ACL_VALID 3
32.Os
33.Sh NAME
34.Nm acl_valid ,
35.Nm acl_valid_fd_np ,
36.Nm acl_valid_file_np ,

--- 10 unchanged lines hidden (view full) ---

47.Fn acl_valid_fd_np "int fd" "acl_type_t type" "acl_t acl"
48.Ft int
49.Fn acl_valid_file_np "const char *path_p" "acl_type_t type" "acl_t acl"
50.Ft int
51.Fn acl_valid_link_np "const char *path_p" "acl_type_t type" "acl_t acl"
52.Sh DESCRIPTION
53These functions check that the ACL referred to by the argument
54.Va acl
29.\"
30.Dd December 29, 2002
31.Dt ACL_VALID 3
32.Os
33.Sh NAME
34.Nm acl_valid ,
35.Nm acl_valid_fd_np ,
36.Nm acl_valid_file_np ,

--- 10 unchanged lines hidden (view full) ---

47.Fn acl_valid_fd_np "int fd" "acl_type_t type" "acl_t acl"
48.Ft int
49.Fn acl_valid_file_np "const char *path_p" "acl_type_t type" "acl_t acl"
50.Ft int
51.Fn acl_valid_link_np "const char *path_p" "acl_type_t type" "acl_t acl"
52.Sh DESCRIPTION
53These functions check that the ACL referred to by the argument
54.Va acl
55is valid. The POSIX.1e routine,
55is valid.
56The POSIX.1e routine,
56.Fn acl_valid ,
57checks this validity only with POSIX.1e ACL semantics, and irrespective
57.Fn acl_valid ,
58checks this validity only with POSIX.1e ACL semantics, and irrespective
58of the context in which the ACL is to be used. The non-portable forms,
59of the context in which the ACL is to be used.
60The non-portable forms,
59.Fn acl_valid_fd_np ,
60.Fn acl_valid_file_np ,
61and
62.Fn acl_valid_link_np
63allow an ACL to be checked in the context of a specific acl type,
64.Va type ,
65and file system object.
66In environments where additional ACL types are

--- 68 unchanged lines hidden (view full) ---

135.El
136.Sh SEE ALSO
137.Xr acl 3 ,
138.Xr acl_get 3 ,
139.Xr acl_init 3 ,
140.Xr acl_set 3 ,
141.Xr posix1e 3
142.Sh STANDARDS
61.Fn acl_valid_fd_np ,
62.Fn acl_valid_file_np ,
63and
64.Fn acl_valid_link_np
65allow an ACL to be checked in the context of a specific acl type,
66.Va type ,
67and file system object.
68In environments where additional ACL types are

--- 68 unchanged lines hidden (view full) ---

137.El
138.Sh SEE ALSO
139.Xr acl 3 ,
140.Xr acl_get 3 ,
141.Xr acl_init 3 ,
142.Xr acl_set 3 ,
143.Xr posix1e 3
144.Sh STANDARDS
143POSIX.1e is described in IEEE POSIX.1e draft 17. Discussion
145POSIX.1e is described in IEEE POSIX.1e draft 17.
146Discussion
144of the draft continues on the cross-platform POSIX.1e implementation
147of the draft continues on the cross-platform POSIX.1e implementation
145mailing list. To join this list, see the
148mailing list.
149To join this list, see the
146.Fx
147POSIX.1e implementation
148page for more information.
149.Sh HISTORY
150POSIX.1e support was introduced in
151.Fx 4.0 ,
152and development continues.
153.Sh AUTHORS
154.An Robert N M Watson
150.Fx
151POSIX.1e implementation
152page for more information.
153.Sh HISTORY
154POSIX.1e support was introduced in
155.Fx 4.0 ,
156and development continues.
157.Sh AUTHORS
158.An Robert N M Watson