mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-03 08:22:44 +00:00
Correct the parameters for the fchown. The third was erroneously
specified as uid_t but should be gid_t.
This commit is contained in:
parent
c7a82f9016
commit
2c0529005c
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=6511
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user