Mercurial > ecos-v3_0-branch
diff packages/fs/fat/current/src/fatfs_supp.c @ 2483:3071a60a92da
* src/fatfs.c: Fix handling of '.' and '..' nodes in dirsearch.
| author | asl |
|---|---|
| date | Tue, 13 May 2008 17:57:35 +0000 |
| parents | 028e0fe198b5 |
| children | 4f15eaebbf32 |
line wrap: on
line diff
--- a/packages/fs/fat/current/src/fatfs_supp.c +++ b/packages/fs/fat/current/src/fatfs_supp.c @@ -2378,11 +2378,11 @@ fatfs_rename_file(fatfs_disk_t *dis CYG_TRACE0(TDE, "different dirs"); - // Moveing around in different dirs + // Moving around in different dirs fatfs_initpos(disk, dir2, &new_pos); - CYG_TRACE0(TDE, "writting to new dir"); + CYG_TRACE0(TDE, "writing to new dir"); // Get free dir entry in target dir @@ -2399,7 +2399,7 @@ fatfs_rename_file(fatfs_disk_t *dis CYG_TRACE0(TDE, "deleting from old dir"); - // Deleate dentry at old location + // Delete dentry at old location raw_dentry_set_deleted(disk, &raw_dentry); raw_dentry.size = 0;
