* Given a file path, set an ACL for it; don't follow links. */
| 401 | * Given a file path, set an ACL for it; don't follow links. |
| 402 | */ |
| 403 | int |
| 404 | sys___acl_set_link(struct thread *td, struct __acl_set_link_args *uap) |
| 405 | { |
| 406 | |
| 407 | return(kern___acl_set_path(td, uap->path, uap->type, uap->aclp, |
| 408 | NOFOLLOW)); |
| 409 | } |
| 410 | |
| 411 | static int |
| 412 | kern___acl_set_path(struct thread *td, const char *path, |
nothing calls this directly
no test coverage detected