From fd2b1634bb0698c7cf6b1dd2489bab2777f34831 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 15 Jul 2010 08:10:48 +0000 Subject: 2010-07-16 Sebastian Huber * libcsupport/include/rtems/libio.h: Removed file_info and handlers fields in rtems_libio_t. * libcsupport/src/close.c, libcsupport/src/fcntl.c, libcsupport/src/fdatasync.c, libcsupport/src/fstat.c, libcsupport/src/fsync.c, libcsupport/src/ftruncate.c, libcsupport/src/getdents.c, libcsupport/src/ioctl.c, libcsupport/src/libio_sockets.c, libcsupport/src/lseek.c, libcsupport/src/open.c, libcsupport/src/read.c, libcsupport/src/readv.c, libcsupport/src/write.c, libcsupport/src/writev.c, libfs/src/devfs/devclose.c, libfs/src/devfs/devioctl.c, libfs/src/devfs/devopen.c, libfs/src/devfs/devread.c, libfs/src/devfs/devwrite.c libfs/src/dosfs/msdos_dir.c libfs/src/dosfs/msdos_file.c libfs/src/imfs/deviceio.c libfs/src/imfs/imfs_directory.c libfs/src/imfs/imfs_fifo.c libfs/src/imfs/memfile.c libfs/src/nfsclient/src/nfs.c libfs/src/rfs/rtems-rfs-rtems-file.c libfs/src/rfs/rtems-rfs-rtems.h libnetworking/lib/ftpfs.c: Reflect changes above. --- cpukit/libnetworking/lib/ftpfs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/libnetworking') 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); -- cgit v1.2.3