| 2857 | }; |
| 2858 | #endif |
| 2859 | int |
| 2860 | sys_lchmod(struct thread *td, struct lchmod_args *uap) |
| 2861 | { |
| 2862 | |
| 2863 | return (kern_fchmodat(td, AT_FDCWD, uap->path, UIO_USERSPACE, |
| 2864 | uap->mode, AT_SYMLINK_NOFOLLOW)); |
| 2865 | } |
| 2866 | |
| 2867 | int |
| 2868 | kern_fchmodat(struct thread *td, int fd, const char *path, |
nothing calls this directly
no test coverage detected