summaryrefslogtreecommitdiffstats
path: root/c/src/exec/libcsupport/src/getdents.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-09-28 20:19:23 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-09-28 20:19:23 +0000
commit9c3fa30a11cf03041d05210a2ffbdaa9001999d4 (patch)
tree1daac572dcf46bd8b85284d6526398b3fd93d65e /c/src/exec/libcsupport/src/getdents.c
parent2000-09-28 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-9c3fa30a11cf03041d05210a2ffbdaa9001999d4.tar.bz2
2000-09-28 Joel Sherrill <joel@OARcorp.com>
* libc/libio.h (rtems_filesystem_file_handlers_r, rtems_filesystem_operations_table): Added _h to all structure fields to indicate they are "handlers". * libc/libio_.h, libc/chdir.c, libc/chmod.c, libc/chown.c, libc/close.c, libc/eval.c, libc/fchdir.c, libc/fchmod.c, libc/fcntl.c, libc/fdatasync.c, libc/fstat.c, libc/fsync.c, libc/ftruncate.c, libc/getdents.c, libc/imfs_eval.c, libc/imfs_unlink.c, libc/ioctl.c, libc/ioman.c, libc/link.c, libc/lseek.c, libc/mknod.c, libc/mount.c, libc/open.c, libc/read.c, libc/readlink.c, libc/rmdir.c, libc/stat.c, libc/symlink.c, libc/unlink.c, libc/unmount.c, libc/utime.c, libc/write.c: Modified to reflect above name change.
Diffstat (limited to 'c/src/exec/libcsupport/src/getdents.c')
-rw-r--r--c/src/exec/libcsupport/src/getdents.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/c/src/exec/libcsupport/src/getdents.c b/c/src/exec/libcsupport/src/getdents.c
index b1afbb13f7..e260fe2489 100644
--- a/c/src/exec/libcsupport/src/getdents.c
+++ b/c/src/exec/libcsupport/src/getdents.c
@@ -40,10 +40,10 @@ int getdents(
* Make sure we are working on a directory
*/
loc = iop->pathinfo;
- if ( !loc.ops->node_type )
+ if ( !loc.ops->node_type_h )
set_errno_and_return_minus_one( ENOTSUP );
- if ( (*loc.ops->node_type)( &loc ) != RTEMS_FILESYSTEM_DIRECTORY )
+ if ( (*loc.ops->node_type_h)( &loc ) != RTEMS_FILESYSTEM_DIRECTORY )
set_errno_and_return_minus_one( ENOTDIR );
/*
@@ -51,8 +51,8 @@ int getdents(
* of the read attempt.
*/
- if ( !iop->handlers->read )
+ if ( !iop->handlers->read_h )
set_errno_and_return_minus_one( ENOTSUP );
- return (*iop->handlers->read)( iop, dd_buf, dd_len );
+ return (*iop->handlers->read_h)( iop, dd_buf, dd_len );
}