summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/dosfs/msdos_misc.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-10-17 09:30:38 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-10-17 09:30:38 +0000
commit48d247781500ed6c1c95d54697f3abd5b22ca314 (patch)
tree822120cefc344e5211d6dc405c370ff9513eb8fe /cpukit/libfs/src/dosfs/msdos_misc.c
parentRemove (diff)
downloadrtems-48d247781500ed6c1c95d54697f3abd5b22ca314.tar.bz2
2005-10-17 Ralf Corsepius <ralf.corsepius@rtems.org>
* libfs/src/dosfs/msdos_misc.c: Revert to vers. 1.9.
Diffstat (limited to 'cpukit/libfs/src/dosfs/msdos_misc.c')
-rw-r--r--cpukit/libfs/src/dosfs/msdos_misc.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpukit/libfs/src/dosfs/msdos_misc.c b/cpukit/libfs/src/dosfs/msdos_misc.c
index b256c5e5e1..0924929deb 100644
--- a/cpukit/libfs/src/dosfs/msdos_misc.c
+++ b/cpukit/libfs/src/dosfs/msdos_misc.c
@@ -252,7 +252,7 @@ msdos_find_name(
* error occured (errno set apropriately)
*
*/
-int
+msdos_status_t
msdos_get_name_node(
rtems_filesystem_location_info_t *parent_loc,
char *name,
@@ -260,7 +260,7 @@ msdos_get_name_node(
char *name_dir_entry
)
{
- int rc = RC_OK;
+ msdos_status_t rc = RC_OK;
ssize_t ret = 0;
msdos_fs_info_t *fs_info = parent_loc->mt_entry->fs_info;
fat_file_fd_t *fat_fd = parent_loc->node_access;
@@ -762,7 +762,7 @@ msdos_dir_is_empty(
* appropriately)
*
*/
-int
+msdos_status_t
msdos_find_name_in_fat_file(
rtems_filesystem_mount_table_entry_t *mt_entry,
fat_file_fd_t *fat_fd,
@@ -771,7 +771,7 @@ msdos_find_name_in_fat_file(
char *name_dir_entry
)
{
- int rc = RC_OK;
+ msdos_status_t rc = RC_OK;
ssize_t ret = 0;
msdos_fs_info_t *fs_info = mt_entry->fs_info;
uint32_t i = 0, j = 0;
@@ -880,7 +880,7 @@ msdos_find_name_in_fat_file(
* RC_OK on success, or error code if error occured
*
*/
-int
+msdos_status_t
msdos_find_node_by_cluster_num_in_fat_file(
rtems_filesystem_mount_table_entry_t *mt_entry,
fat_file_fd_t *fat_fd,
@@ -889,7 +889,7 @@ msdos_find_node_by_cluster_num_in_fat_file(
char *dir_entry
)
{
- int rc = RC_OK;
+ msdos_status_t rc = RC_OK;
ssize_t ret = 0;
msdos_fs_info_t *fs_info = mt_entry->fs_info;
uint32_t bts2rd = 0;