* Given a file path, delete an ACL from it. */
| 468 | * Given a file path, delete an ACL from it. |
| 469 | */ |
| 470 | int |
| 471 | sys___acl_delete_file(struct thread *td, struct __acl_delete_file_args *uap) |
| 472 | { |
| 473 | |
| 474 | return (kern___acl_delete_path(td, uap->path, uap->type, FOLLOW)); |
| 475 | } |
| 476 | |
| 477 | /* |
| 478 | * Given a file path, delete an ACL from it; don't follow links. |
nothing calls this directly
no test coverage detected