* Given a file path, get an ACL for it */
| 352 | * Given a file path, get an ACL for it |
| 353 | */ |
| 354 | int |
| 355 | sys___acl_get_file(struct thread *td, struct __acl_get_file_args *uap) |
| 356 | { |
| 357 | |
| 358 | return (kern___acl_get_path(td, uap->path, uap->type, uap->aclp, |
| 359 | FOLLOW)); |
| 360 | } |
| 361 | |
| 362 | /* |
| 363 | * Given a file path, get an ACL for it; don't follow links. |
nothing calls this directly
no test coverage detected