Set src->utime = time(NULL).

This commit is contained in:
wbaumann 2009-05-21 09:19:40 +00:00
parent e8225e0812
commit cf4e867693
2 changed files with 4 additions and 2 deletions

View File

@ -5,7 +5,9 @@ ChangeLog for davfs2
* cache.c, move_dirty, move_reg:
Use converted file name for dst_path.
* cache.c:
Rename move_dirty to Move_no_remote.
Rename move_dirty to move_no_remote.
* cache.c, move_reg:
Set src->utime = time(NULL).

2009-05-15 Werner Baumann (werner.baumann@onlinehome.de)
* cache.c, dav_close:

View File

@ -1949,7 +1949,7 @@ move_reg(dav_node *src, dav_node *dst, dav_node *dst_parent,
src->name = ne_strdup(dst_name);
free(src->path);
src->path = dst_path;
src->utime = 0;
src->utime = time(NULL);

return 0;
}