Changeset 65ccd23 in mainline for uspace/srv/fs/fat/fat_dentry.c


Ignore:
Timestamp:
2011-06-10T17:17:24Z (15 years ago)
Author:
Oleg Romanenko <romanenko.oleg@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
da2f8d10
Parents:
34fdb75
Message:

Initial support for LFN. Long names could be read from
filesystem through common api: readdir()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/fat/fat_dentry.c

    r34fdb75 r65ccd23  
    219219fat_dentry_clsf_t fat_classify_dentry(const fat_dentry_t *d)
    220220{
    221 /*      if (d->attr == FAT_ATTR_LFN) { */
     221        if (d->attr == FAT_ATTR_LFN) {
    222222                /* long name entry */
    223 /*              if (d->attr & FAT_LFN_ERASED)
     223                if (d->attr & FAT_LFN_ERASED)
    224224                        return FAT_DENTRY_FREE;
    225225                else
    226226                        return FAT_DENTRY_LFN;
    227         }*/
     227        }
    228228        if (d->attr & FAT_ATTR_VOLLABEL) {
    229229                /* volume label entry */
Note: See TracChangeset for help on using the changeset viewer.