summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libmisc')
-rw-r--r--cpukit/libmisc/shell/main_mount_ftp.c2
-rw-r--r--cpukit/libmisc/shell/shell.h8
2 files changed, 5 insertions, 5 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
};
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;
};
/**