Changes in uspace/srv/fs/fat/fat_ops.c [c7bbf029:5ca5eaa7] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_ops.c
rc7bbf029 r5ca5eaa7 55 55 #include <sys/mman.h> 56 56 #include <align.h> 57 #include <malloc.h>58 57 59 58 #define FAT_NODE(node) ((node) ? (fat_node_t *) (node)->data : NULL) … … 723 722 (str_cmp((char *) d->name, FAT_NAME_DOT)) == 0) { 724 723 memset(d, 0, sizeof(fat_dentry_t)); 725 memcpy(d->name, FAT_NAME_DOT, FAT_NAME_LEN);726 memcpy(d->ext, FAT_EXT_PAD, FAT_EXT_LEN);724 str_cpy((char *) d->name, 8, FAT_NAME_DOT); 725 str_cpy((char *) d->ext, 3, FAT_EXT_PAD); 727 726 d->attr = FAT_ATTR_SUBDIR; 728 727 d->firstc = host2uint16_t_le(childp->firstc); … … 733 732 (str_cmp((char *) d->name, FAT_NAME_DOT_DOT) == 0)) { 734 733 memset(d, 0, sizeof(fat_dentry_t)); 735 memcpy(d->name, FAT_NAME_DOT_DOT, FAT_NAME_LEN);736 memcpy(d->ext, FAT_EXT_PAD, FAT_EXT_LEN);734 str_cpy((char *) d->name, 8, FAT_NAME_DOT_DOT); 735 str_cpy((char *) d->ext, 3, FAT_EXT_PAD); 737 736 d->attr = FAT_ATTR_SUBDIR; 738 737 d->firstc = (parentp->firstc == FAT_CLST_ROOT) ?
Note:
See TracChangeset
for help on using the changeset viewer.