summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/chdir.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/chdir.c')
-rw-r--r--cpukit/libcsupport/src/chdir.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libcsupport/src/chdir.c b/cpukit/libcsupport/src/chdir.c
index df65170936..5ef6fd9d15 100644
--- a/cpukit/libcsupport/src/chdir.c
+++ b/cpukit/libcsupport/src/chdir.c
@@ -48,8 +48,8 @@ int chdir( const char *path )
{
int rv = 0;
rtems_filesystem_eval_path_context_t ctx;
- int eval_flags = RTEMS_LIBIO_PERMS_EXEC
- | RTEMS_LIBIO_FOLLOW_LINK;
+ int eval_flags = RTEMS_FS_PERMS_EXEC
+ | RTEMS_FS_FOLLOW_LINK;
rtems_filesystem_location_info_t pathloc;
rtems_filesystem_eval_path_start( &ctx, path, eval_flags );