* small_data attribute now get their st_mtim from st_ctim, as that should be

closer to the reality.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33833 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2009-10-29 18:36:27 +00:00
parent 1b944eec20
commit 56ae953f5e

View File

@ -183,6 +183,8 @@ Attribute::Stat(struct stat& stat)
// overwrite some data to suit our needs
stat.st_type = fSmall->Type();
stat.st_size = fSmall->DataSize();
stat.st_mtim = stat.st_ctim;
// attribute changes cause status_change updates
}
if (fAttribute != NULL)