summaryrefslogtreecommitdiff
path: root/lib/libposix1e/acl_set.c
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2000-01-19 06:13:59 +0000
committerRobert Watson <rwatson@FreeBSD.org>2000-01-19 06:13:59 +0000
commitd33523160658b54127ac63bcaefa6080d8dbe373 (patch)
treeaa447e672c01c474f7e32cb62eb3e72f91171a52 /lib/libposix1e/acl_set.c
parentc50a9e8f2d5f768bd49f3cb3a0ee98a3aa4ea3e6 (diff)
Notes
Diffstat (limited to 'lib/libposix1e/acl_set.c')
-rw-r--r--lib/libposix1e/acl_set.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libposix1e/acl_set.c b/lib/libposix1e/acl_set.c
index 6a04328e097b..18734220efd4 100644
--- a/lib/libposix1e/acl_set.c
+++ b/lib/libposix1e/acl_set.c
@@ -54,7 +54,7 @@ acl_set_file(const char *path_p, acl_type_t type, acl_t acl)
}
}
- return (acl_syscall_set_file(path_p, type, acl));
+ return (__acl_set_file(path_p, type, acl));
}
@@ -71,5 +71,5 @@ acl_set_fd(int fd, acl_t acl, acl_type_t type)
}
}
- return (acl_syscall_set_fd(fd, type, acl));
+ return (__acl_set_fd(fd, type, acl));
}