1192586Strasz/*-
2192586Strasz * Copyright (c) 2008 Edward Tomasz Napiera��a <trasz@FreeBSD.org>
3192586Strasz * All rights reserved.
4192586Strasz *
5192586Strasz * Redistribution and use in source and binary forms, with or without
6192586Strasz * modification, are permitted provided that the following conditions
7192586Strasz * are met:
8192586Strasz * 1. Redistributions of source code must retain the above copyright
9192586Strasz *    notice, this list of conditions and the following disclaimer.
10192586Strasz * 2. Redistributions in binary form must reproduce the above copyright
11192586Strasz *    notice, this list of conditions and the following disclaimer in the
12192586Strasz *    documentation and/or other materials provided with the distribution.
13192586Strasz *
14192804Strasz * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15192804Strasz * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16192804Strasz * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17192804Strasz * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18192804Strasz * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19192804Strasz * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20192804Strasz * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21192804Strasz * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22192804Strasz * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23192804Strasz * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24192804Strasz * SUCH DAMAGE.
25192586Strasz */
26192586Strasz
27192586Strasz#include <sys/cdefs.h>
28192586Strasz__FBSDID("$FreeBSD$");
29192586Strasz
30192586Strasz#include <sys/acl.h>
31192586Strasz
32192586Strasz/*
33192586Strasz * Compatibility wrappers for applications compiled against libc from before
34192586Strasz * NFSv4 ACLs were added.
35192586Strasz */
36192586Straszint
37192586Strasz__oldacl_get_perm_np(acl_permset_t permset_d, oldacl_perm_t perm)
38192586Strasz{
39192586Strasz
40192586Strasz	return (acl_get_perm_np(permset_d, perm));
41192586Strasz}
42192586Strasz
43192586Straszint
44192586Strasz__oldacl_add_perm(acl_permset_t permset_d, oldacl_perm_t perm)
45192586Strasz{
46192586Strasz
47192586Strasz	return (acl_add_perm(permset_d, perm));
48192586Strasz}
49192586Strasz
50192586Straszint
51192586Strasz__oldacl_delete_perm(acl_permset_t permset_d, oldacl_perm_t perm)
52192586Strasz{
53192586Strasz
54192586Strasz	return (acl_delete_perm(permset_d, perm));
55192586Strasz}
56192586Strasz
57192586Strasz__sym_compat(acl_get_perm_np, __oldacl_get_perm_np, FBSD_1.0);
58192586Strasz__sym_compat(acl_add_perm, __oldacl_add_perm, FBSD_1.0);
59192586Strasz__sym_compat(acl_delete_perm, __oldacl_delete_perm, FBSD_1.0);
60