summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2005-10-06 12:13:50 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2005-10-06 12:13:50 +0000
commit9a72334444368218eadc63badcc1bb169447c804 (patch)
tree33c9bcd7ffdac59f38a9e6a2797685adf5c1389e /cpukit
parentRemove comments not really for 4.6 branch. (diff)
downloadrtems-9a72334444368218eadc63badcc1bb169447c804.tar.bz2
2005-10-06 Joel Sherrill <joel@OARcorp.com>
PR 828/filesystems * libfs/src/dosfs/msdos_misc.c: Problem retracted. Revert patch.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/libfs/src/dosfs/msdos_misc.c12
2 files changed, 11 insertions, 6 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 619e06c557..cae1b289ba 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,8 @@
+2005-10-06 Joel Sherrill <joel@OARcorp.com>
+
+ PR 828/filesystems
+ * libfs/src/dosfs/msdos_misc.c: Problem retracted. Revert patch.
+
2005-10-04 Till Straumann <strauman@slac.stanford.edu>
PR 829/rtems
diff --git a/cpukit/libfs/src/dosfs/msdos_misc.c b/cpukit/libfs/src/dosfs/msdos_misc.c
index 0924929deb..b256c5e5e1 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)
*
*/
-msdos_status_t
+int
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
)
{
- msdos_status_t rc = RC_OK;
+ int 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)
*
*/
-msdos_status_t
+int
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
)
{
- msdos_status_t rc = RC_OK;
+ int 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
*
*/
-msdos_status_t
+int
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
)
{
- msdos_status_t rc = RC_OK;
+ int rc = RC_OK;
ssize_t ret = 0;
msdos_fs_info_t *fs_info = mt_entry->fs_info;
uint32_t bts2rd = 0;