As this code is used by tools, and thus needs to be portable,

eliminate all the mucking around for an undocumented, seemingly
unused field and use 0.
This commit is contained in:
dogcow 2012-04-27 20:58:54 +00:00
parent d4145bf15d
commit d5de483ef7
1 changed files with 1 additions and 5 deletions

View File

@ -209,11 +209,7 @@ write_dirent(fsinfo_t *fsopts, fsnode *node)
}
fdirent.version = htole64(version++);
#ifdef HAVE_STRUCT_STAT_ST_MTIMENSEC
fdirent.mctime = htole32(node->inode->st.st_mtimensec);
#else
fdirent.mctime = htole32(node->inode->st.st_mtimespec.tv_nsec);
#endif
fdirent.mctime = 0;
fdirent.nsize = htole32(strlen(name));
fdirent.dtype = htole32(IFTOCHT(node->type & S_IFMT));
fdirent.name_crc = htole32(crc32(0, (uint8_t *)name, fdirent.nsize));