Changeset c735cd5 in rtems for cpukit/libfs/src/dosfs/msdos_create.c
- Timestamp:
- Mar 5, 2015, 9:34:28 AM (6 years ago)
- Branches:
- 4.11, 5, master
- Children:
- 16b2de35
- Parents:
- 6fd5b4e
- git-author:
- Sebastian Huber <sebastian.huber@…> (03/05/15 09:34:28)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (03/05/15 10:23:10)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libfs/src/dosfs/msdos_create.c
r6fd5b4e rc735cd5 60 60 int 61 61 msdos_creat_node(const rtems_filesystem_location_info_t *parent_loc, 62 msdos_node_type_ttype,62 fat_file_type_t type, 63 63 const char *name, 64 64 int name_len, … … 116 116 *MSDOS_DIR_FILE_SIZE(short_node) = MSDOS_INIT_DIR_SIZE; 117 117 118 if (type == MSDOS_DIRECTORY) {118 if (type == FAT_DIRECTORY) { 119 119 *MSDOS_DIR_ATTR(short_node) |= MSDOS_ATTR_DIRECTORY; 120 120 } 121 else if (type == MSDOS_HARD_LINK) {121 else if (type == FAT_HARD_LINK) { 122 122 /* 123 123 * when we establish a (temporary) hard link, … … 178 178 * to do 179 179 */ 180 if (type == MSDOS_DIRECTORY)180 if (type == FAT_DIRECTORY) 181 181 { 182 182 /* open new directory as fat-file */
Note: See TracChangeset
for help on using the changeset viewer.