The traps of copy & paste - this time it should really work...

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1954 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2002-11-15 22:52:49 +00:00
parent 90b31eb333
commit 6c45733119

View File

@ -30,7 +30,7 @@ utime(const char *path, const struct utimbuf *times)
} else
stat.st_atime = stat.st_mtime = time(NULL);
status = sys_write_path_stat(path, false, &stat, FS_WRITE_STAT_MTIME | FS_WRITE_STAT_ATIME);
status = sys_write_path_stat(path, true, &stat, FS_WRITE_STAT_MTIME | FS_WRITE_STAT_ATIME);
RETURN_AND_SET_ERRNO(status);
}