Incorrectly set uid instead of gid.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20343 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
+1
-1
@@ -559,7 +559,7 @@ ramfs_write_stat(void *ns, void *_node, struct stat *st, long mask)
|
|||||||
node->SetUID(st->st_uid);
|
node->SetUID(st->st_uid);
|
||||||
// GID
|
// GID
|
||||||
if (mask & WSTAT_GID)
|
if (mask & WSTAT_GID)
|
||||||
node->SetUID(st->st_gid);
|
node->SetGID(st->st_gid);
|
||||||
// mtime
|
// mtime
|
||||||
if (mask & WSTAT_MTIME)
|
if (mask & WSTAT_MTIME)
|
||||||
node->SetMTime(st->st_mtime);
|
node->SetMTime(st->st_mtime);
|
||||||
|
|||||||
Reference in New Issue
Block a user