| 3006 | }; |
| 3007 | #endif |
| 3008 | int |
| 3009 | sys_lchown(struct thread *td, struct lchown_args *uap) |
| 3010 | { |
| 3011 | |
| 3012 | return (kern_fchownat(td, AT_FDCWD, uap->path, UIO_USERSPACE, |
| 3013 | uap->uid, uap->gid, AT_SYMLINK_NOFOLLOW)); |
| 3014 | } |
| 3015 | |
| 3016 | /* |
| 3017 | * Set ownership given a file descriptor. |
nothing calls this directly
no test coverage detected