From 2c0529005c3770b761660cdfe2b684073a8c4661 Mon Sep 17 00:00:00 2001 From: Andreas Schulz Date: Fri, 17 Feb 1995 00:41:30 +0000 Subject: [PATCH] Correct the parameters for the fchown. The third was erroneously specified as uid_t but should be gid_t. --- lib/libc/sys/chown.2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libc/sys/chown.2 b/lib/libc/sys/chown.2 index 8b851e2e6ad7..11c3956898e8 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