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:
Ingo Weinhold 2007-03-07 06:10:27 +00:00
parent 1716d266c5
commit 7b4b242d27
1 changed files with 1 additions and 1 deletions

View File

@ -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);