Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3281 → Rev 3282

/trunk/uspace/srv/fs/fat/fat_ops.c
356,11 → 356,17
* and initialized elsewhere.
*/
nodep->type = FAT_DIRECTORY;
/*
* TODO: determine the size by walking FAT. Surprisingly, the
* 'size' filed of the FAT dentry is not defined for the
* directory entry type.
*/
nodep->size = 64 * sizeof(fat_dentry_t);
} else {
nodep->type = FAT_FILE;
nodep->size = uint32_t_le2host(d->size);
}
nodep->firstc = uint16_t_le2host(d->firstc);
nodep->size = uint32_t_le2host(d->size);
nodep->lnkcnt = 1;
nodep->refcnt = 1;