summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/mknod.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/mknod.c')
-rw-r--r--cpukit/libcsupport/src/mknod.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/libcsupport/src/mknod.c b/cpukit/libcsupport/src/mknod.c
index 30a3f548a2..98eb9ef36e 100644
--- a/cpukit/libcsupport/src/mknod.c
+++ b/cpukit/libcsupport/src/mknod.c
@@ -43,12 +43,12 @@ int mknod(
rtems_filesystem_get_start_loc( pathname, &i, &temp_loc );
- if ( !temp_loc.ops->evalformake ) {
+ if ( !temp_loc.ops->evalformake_h ) {
rtems_filesystem_freenode( &temp_loc );
set_errno_and_return_minus_one( ENOTSUP );
}
- result = (*temp_loc.ops->evalformake)(
+ result = (*temp_loc.ops->evalformake_h)(
&pathname[i],
&temp_loc,
&name_start
@@ -56,12 +56,12 @@ int mknod(
if ( result != 0 )
return -1;
- if ( !temp_loc.ops->mknod ) {
+ if ( !temp_loc.ops->mknod_h ) {
rtems_filesystem_freenode( &temp_loc );
set_errno_and_return_minus_one( ENOTSUP );
}
- result = (*temp_loc.ops->mknod)( name_start, mode, dev, &temp_loc );
+ result = (*temp_loc.ops->mknod_h)( name_start, mode, dev, &temp_loc );
rtems_filesystem_freenode( &temp_loc );