diff options
author | ats <ats@FreeBSD.org> | 1995-02-17 00:41:30 +0000 |
---|---|---|
committer | ats <ats@FreeBSD.org> | 1995-02-17 00:41:30 +0000 |
commit | a40b30676abee4b79054303f04b9293014518de0 (patch) | |
tree | fd6b398f3fcbfc7f22cdc4c16f25311dfd934daf | |
parent | cb466c876c98110659cd952af79712abb383bdf7 (diff) | |
download | FreeBSD-src-a40b30676abee4b79054303f04b9293014518de0.zip FreeBSD-src-a40b30676abee4b79054303f04b9293014518de0.tar.gz |
Correct the parameters for the fchown. The third was erroneously
specified as uid_t but should be gid_t.
-rw-r--r-- | lib/libc/sys/chown.2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/sys/chown.2 b/lib/libc/sys/chown.2 index 8b851e2..11c3956 100644 --- a/lib/libc/sys/chown.2 +++ b/lib/libc/sys/chown.2 @@ -43,7 +43,7 @@ .Ft int .Fn chown "const char *path" "uid_t owner" "gid_t group" .Ft int -.Fn fchown "int fd" "uid_t owner" "uid_t group" +.Fn fchown "int fd" "uid_t owner" "gid_t group" .Sh DESCRIPTION The owner ID and group ID of the file named by |