Fix timestamp issue when gen'ing fs (Issue #83)

This commit is contained in:
Michel Oosterhof 2014-10-04 19:22:27 +00:00
parent 3fbf21dc5c
commit 9d5930e109
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ def recurse(root, tree, count = 0):
continue
entry = [name, T_FILE, s.st_uid, s.st_gid, s.st_size, s.st_mode, \
int(s.st_ctime), [], None, None]
int(s.st_mtime), [], None, None]
if S_ISLNK(s[ST_MODE]):
entry[A_TYPE] = T_LINK