* Given a file path, delete an ACL from it; don't follow links. */
| 478 | * Given a file path, delete an ACL from it; don't follow links. |
| 479 | */ |
| 480 | int |
| 481 | sys___acl_delete_link(struct thread *td, struct __acl_delete_link_args *uap) |
| 482 | { |
| 483 | |
| 484 | return (kern___acl_delete_path(td, uap->path, uap->type, NOFOLLOW)); |
| 485 | } |
| 486 | |
| 487 | static int |
| 488 | kern___acl_delete_path(struct thread *td, const char *path, |
nothing calls this directly
no test coverage detected