From 8916bdc71bfcc3bb0a7c84808e8d2391bd7d44b0 Mon Sep 17 00:00:00 2001 From: Thomas Doerfler Date: Thu, 26 Mar 2009 14:11:53 +0000 Subject: * 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. --- cpukit/libmisc/shell/shell.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cpukit/libmisc/shell/shell.h') diff --git a/cpukit/libmisc/shell/shell.h b/cpukit/libmisc/shell/shell.h index b1d589031c..9e5baccf42 100644 --- a/cpukit/libmisc/shell/shell.h +++ b/cpukit/libmisc/shell/shell.h @@ -222,10 +222,10 @@ typedef int (*rtems_shell_filesystems_mounter_t)( ); struct rtems_shell_filesystems_tt { - const char* name; - int driver_needed; - rtems_filesystem_operations_table* fs_ops; - rtems_shell_filesystems_mounter_t mounter; + const char *name; + int driver_needed; + const rtems_filesystem_operations_table *fs_ops; + rtems_shell_filesystems_mounter_t mounter; }; /** -- cgit v1.2.3