* Given a file path, set an ACL for it. */
| 390 | * Given a file path, set an ACL for it. |
| 391 | */ |
| 392 | int |
| 393 | sys___acl_set_file(struct thread *td, struct __acl_set_file_args *uap) |
| 394 | { |
| 395 | |
| 396 | return(kern___acl_set_path(td, uap->path, uap->type, uap->aclp, |
| 397 | FOLLOW)); |
| 398 | } |
| 399 | |
| 400 | /* |
| 401 | * Given a file path, set an ACL for it; don't follow links. |
nothing calls this directly
no test coverage detected