From 4a07d2b866a2104102215cbd196269dcce18c000 Mon Sep 17 00:00:00 2001 From: Jennifer Averett Date: Fri, 29 Oct 1999 15:19:13 +0000 Subject: Moved the rmnod callback from the operations table to the handler table. --- cpukit/libcsupport/src/rmdir.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/libcsupport/src') 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 ); -- cgit v1.2.3