summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell/main_mount_ftp.c
diff options
context:
space:
mode:
authorThomas Doerfler <Thomas.Doerfler@embedded-brains.de>2009-03-26 14:11:53 +0000
committerThomas Doerfler <Thomas.Doerfler@embedded-brains.de>2009-03-26 14:11:53 +0000
commit8916bdc71bfcc3bb0a7c84808e8d2391bd7d44b0 (patch)
tree1ccc9f2542bdea2b8bab6ffceb193a9c9ede81f3 /cpukit/libmisc/shell/main_mount_ftp.c
parent2009-03-26 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-8916bdc71bfcc3bb0a7c84808e8d2391bd7d44b0.tar.bz2
* libmisc/shell/shell.h: Pointer to
oparations table for mount command is now const. * libnetworking/lib/ftpfs.c, libnetworking/rtems/ftpfs.h: Rewrite of the FTP file system which implements now the trivial command state machines of RFC 959. For the data transfer passive (= default) and active (= fallback) modes are now supported. * libmisc/shell/main_mount_ftp.c: Update for FTP file system changes.
Diffstat (limited to 'cpukit/libmisc/shell/main_mount_ftp.c')
-rw-r--r--cpukit/libmisc/shell/main_mount_ftp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libmisc/shell/main_mount_ftp.c b/cpukit/libmisc/shell/main_mount_ftp.c
index a30e9bd18b..2712812fc0 100644
--- a/cpukit/libmisc/shell/main_mount_ftp.c
+++ b/cpukit/libmisc/shell/main_mount_ftp.c
@@ -32,6 +32,6 @@
rtems_shell_filesystems_t rtems_shell_Mount_FTP = {
name: "ftp",
driver_needed: 1,
- fs_ops: &rtems_ftp_ops,
+ fs_ops: &rtems_ftpfs_ops,
mounter: rtems_shell_libc_mounter
};