* Given a file path, check an ACL for it; don't follow links. */
| 535 | * Given a file path, check an ACL for it; don't follow links. |
| 536 | */ |
| 537 | int |
| 538 | sys___acl_aclcheck_link(struct thread *td, struct __acl_aclcheck_link_args *uap) |
| 539 | { |
| 540 | return (kern___acl_aclcheck_path(td, uap->path, uap->type, uap->aclp, |
| 541 | NOFOLLOW)); |
| 542 | } |
| 543 | |
| 544 | static int |
| 545 | kern___acl_aclcheck_path(struct thread *td, const char *path, acl_type_t type, |
nothing calls this directly
no test coverage detected