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:
parent
1716d266c5
commit
7b4b242d27
@ -559,7 +559,7 @@ ramfs_write_stat(void *ns, void *_node, struct stat *st, long mask)
|
||||
node->SetUID(st->st_uid);
|
||||
// GID
|
||||
if (mask & WSTAT_GID)
|
||||
node->SetUID(st->st_gid);
|
||||
node->SetGID(st->st_gid);
|
||||
// mtime
|
||||
if (mask & WSTAT_MTIME)
|
||||
node->SetMTime(st->st_mtime);
|
||||
|
Loading…
Reference in New Issue
Block a user