* Given a file path, get an ACL for it; don't follow links. */
| 363 | * Given a file path, get an ACL for it; don't follow links. |
| 364 | */ |
| 365 | int |
| 366 | sys___acl_get_link(struct thread *td, struct __acl_get_link_args *uap) |
| 367 | { |
| 368 | |
| 369 | return(kern___acl_get_path(td, uap->path, uap->type, uap->aclp, |
| 370 | NOFOLLOW)); |
| 371 | } |
| 372 | |
| 373 | static int |
| 374 | kern___acl_get_path(struct thread *td, const char *path, acl_type_t type, |
nothing calls this directly
no test coverage detected