summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/eval.c')
-rw-r--r--cpukit/libcsupport/src/eval.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/cpukit/libcsupport/src/eval.c b/cpukit/libcsupport/src/eval.c
index da7acc45de..9ef8c735a5 100644
--- a/cpukit/libcsupport/src/eval.c
+++ b/cpukit/libcsupport/src/eval.c
@@ -42,9 +42,6 @@ int rtems_filesystem_evaluate_relative_path(
if ( !pathloc )
rtems_set_errno_and_return_minus_one( EIO ); /* should never happen */
- if ( !pathloc->ops->evalpath_h )
- rtems_set_errno_and_return_minus_one( ENOTSUP );
-
result = (*pathloc->ops->evalpath_h)( pathname, pathnamelen, flags, pathloc );
/*
@@ -54,21 +51,11 @@ int rtems_filesystem_evaluate_relative_path(
if ( (result == 0) && follow_link ) {
- if ( !pathloc->ops->node_type_h ){
- rtems_filesystem_freenode( pathloc );
- rtems_set_errno_and_return_minus_one( ENOTSUP );
- }
-
type = (*pathloc->ops->node_type_h)( pathloc );
if ( ( type == RTEMS_FILESYSTEM_HARD_LINK ) ||
( type == RTEMS_FILESYSTEM_SYM_LINK ) ) {
- if ( !pathloc->ops->eval_link_h ){
- rtems_filesystem_freenode( pathloc );
- rtems_set_errno_and_return_minus_one( ENOTSUP );
- }
-
/* what to do with the valid node pathloc points to
* if eval_link_h fails?
* Let the FS implementation deal with this case. It