| 2729 | }; |
| 2730 | #endif |
| 2731 | int |
| 2732 | sys_lchflags(struct thread *td, struct lchflags_args *uap) |
| 2733 | { |
| 2734 | |
| 2735 | return (kern_chflagsat(td, AT_FDCWD, uap->path, UIO_USERSPACE, |
| 2736 | uap->flags, AT_SYMLINK_NOFOLLOW)); |
| 2737 | } |
| 2738 | |
| 2739 | static int |
| 2740 | kern_chflagsat(struct thread *td, int fd, const char *path, |
nothing calls this directly
no test coverage detected