Changeset af4dec0 in mainline
- Timestamp:
- 2011-07-07T20:06:08Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9f98578
- Parents:
- 3e018e45
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_ops.c
r3e018e45 raf4dec0 587 587 fat_dentry_t de; 588 588 int rc; 589 wchar_t wname[FAT_LFN_NAME_SIZE];590 589 591 590 fibril_mutex_lock(&childp->lock); … … 600 599 fibril_mutex_unlock(&childp->lock); 601 600 602 rc = str_to_wstr(wname, FAT_LFN_NAME_SIZE, name); 603 if (rc != EOK) 604 return rc; 605 606 if (!fat_lfn_valid(wname)) 601 if (!fat_valid_name(name)) 607 602 return ENOTSUP; 608 603
Note:
See TracChangeset
for help on using the changeset viewer.