From 872b2b335bbfc45d6208b90f0bdda4bfce479ce5 Mon Sep 17 00:00:00 2001 From: Olaf Barthel Date: Mon, 25 Sep 2006 15:41:50 +0000 Subject: [PATCH] - Forgot to update chown() to use the same bug fix as fchown(). git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15152 87f5fb63-7c3d-0410-a384-fd976d0f7a62 --- library/unistd_chown.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/unistd_chown.c b/library/unistd_chown.c index a5a6061..b4e7067 100644 --- a/library/unistd_chown.c +++ b/library/unistd_chown.c @@ -1,5 +1,5 @@ /* - * $Id: unistd_chown.c,v 1.11 2006-04-05 08:19:11 obarthel Exp $ + * $Id: unistd_chown.c,v 1.12 2006-09-25 15:41:50 obarthel Exp $ * * :ts=4 * @@ -194,7 +194,7 @@ chown(const char * path_name, uid_t owner, gid_t group) memmove(&new_name->name[1],path_name,len); PROFILE_OFF(); - status = DoPkt(dvp->dvp_Port,ACTION_SET_OWNER,dvp->dvp_Lock,MKBADDR(new_name),(LONG)((((ULONG)owner) << 16) | group),0,0); + status = DoPkt(dvp->dvp_Port,ACTION_SET_OWNER,0,dvp->dvp_Lock,MKBADDR(new_name),(LONG)((((ULONG)owner) << 16) | group),0); PROFILE_ON(); } }