summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src
diff options
context:
space:
mode:
authorJennifer Averett <Jennifer.Averett@OARcorp.com>1999-10-29 15:19:13 +0000
committerJennifer Averett <Jennifer.Averett@OARcorp.com>1999-10-29 15:19:13 +0000
commit4a07d2b866a2104102215cbd196269dcce18c000 (patch)
tree2a84022d24a4688bbeb8ef469a9983abc0bd6a7d /cpukit/libcsupport/src
parentJoel added a table of mount entry requests to be processed during (diff)
downloadrtems-4a07d2b866a2104102215cbd196269dcce18c000.tar.bz2
Moved the rmnod callback from the operations table to the handler table.
Diffstat (limited to 'cpukit/libcsupport/src')
-rw-r--r--cpukit/libcsupport/src/rmdir.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libcsupport/src/rmdir.c b/cpukit/libcsupport/src/rmdir.c
index 806176beaf..001d999ce2 100644
--- a/cpukit/libcsupport/src/rmdir.c
+++ b/cpukit/libcsupport/src/rmdir.c
@@ -53,12 +53,12 @@ int rmdir(
* Use the filesystems rmnod to remove the node.
*/
- if ( !loc.ops->rmnod ){
+ if ( !loc.handlers->rmnod ){
rtems_filesystem_freenode( &loc );
set_errno_and_return_minus_one( ENOTSUP );
}
- result = (*loc.ops->rmnod)( &loc );
+ result = (*loc.handlers->rmnod)( &loc );
rtems_filesystem_freenode( &loc );