summaryrefslogtreecommitdiffstats
path: root/c/src/exec/libfs/src
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-07-02 12:29:47 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-07-02 12:29:47 +0000
commit3af082818eaf759907a3b7863f5519418a069118 (patch)
tree21db380524ab39cc49d6343a13bec5b9fe0e440f /c/src/exec/libfs/src
parentAdded fchdir(). (diff)
downloadrtems-3af082818eaf759907a3b7863f5519418a069118.tar.bz2
Fixed stat_ino should be st_ino.
Diffstat (limited to '')
-rw-r--r--c/src/exec/libfs/src/imfs/imfs_directory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/exec/libfs/src/imfs/imfs_directory.c b/c/src/exec/libfs/src/imfs/imfs_directory.c
index 4f5ef031fb..becc534049 100644
--- a/c/src/exec/libfs/src/imfs/imfs_directory.c
+++ b/c/src/exec/libfs/src/imfs/imfs_directory.c
@@ -117,7 +117,7 @@ int imfs_dir_read(
tmp_dirent.d_off = current_entry;
tmp_dirent.d_reclen = sizeof( struct dirent );
the_jnode = (IMFS_jnode_t *) the_node;
- tmp_dirent.d_ino = the_jnode->stat_ino;
+ tmp_dirent.d_ino = the_jnode->st_ino;
tmp_dirent.d_namlen = strlen( the_jnode->name );
strcpy( tmp_dirent.d_name, the_jnode->name );
memcpy(