* Given a file path, check an ACL for it. */
| 524 | * Given a file path, check an ACL for it. |
| 525 | */ |
| 526 | int |
| 527 | sys___acl_aclcheck_file(struct thread *td, struct __acl_aclcheck_file_args *uap) |
| 528 | { |
| 529 | |
| 530 | return (kern___acl_aclcheck_path(td, uap->path, uap->type, uap->aclp, |
| 531 | FOLLOW)); |
| 532 | } |
| 533 | |
| 534 | /* |
| 535 | * Given a file path, check an ACL for it; don't follow links. |
nothing calls this directly
no test coverage detected