summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libnetworking')
-rw-r--r--cpukit/libnetworking/lib/ftpfs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/libnetworking/lib/ftpfs.c b/cpukit/libnetworking/lib/ftpfs.c
index c9d6363863..892c1500be 100644
--- a/cpukit/libnetworking/lib/ftpfs.c
+++ b/cpukit/libnetworking/lib/ftpfs.c
@@ -958,7 +958,7 @@ static int rtems_ftpfs_open(
? "STOR "
: "RETR ";
uint32_t client_address = 0;
- char *location = iop->file_info;
+ char *location = iop->pathinfo.node_access;
/* Invalidate data handle */
iop->data1 = NULL;
@@ -982,7 +982,7 @@ static int rtems_ftpfs_open(
* This is an access to the root node that will be used for file system
* option settings.
*/
- iop->handlers = &rtems_ftpfs_root_handlers;
+ iop->pathinfo.handlers = &rtems_ftpfs_root_handlers;
return 0;
} else {
@@ -1166,7 +1166,7 @@ static int rtems_ftpfs_eval_path(
/*
* The caller of this routine has striped off the mount prefix from the path.
* We need to store this path here or otherwise we would have to do this job
- * again. The path is used in rtems_ftpfs_open() via iop->file_info.
+ * again. The path is used in rtems_ftpfs_open() via iop->pathinfo.node_access.
*/
char *pathname_dup = malloc(pathnamelen + 1);