summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/dosfs/msdos_handlers_dir.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-07-01 20:18:41 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-07-01 20:18:41 +0000
commit962571e914bf79f7befae0d68a83858058605438 (patch)
treebe39a0437a89a4d321da8cd85a6f032cb871022f /cpukit/libfs/src/dosfs/msdos_handlers_dir.c
parent2010-07-01 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-962571e914bf79f7befae0d68a83858058605438.tar.bz2
2010-07-01 Joel Sherrill <joel.sherrilL@OARcorp.com>
* libfs/src/dosfs/msdos_handlers_dir.c, libfs/src/dosfs/msdos_handlers_file.c, libfs/src/imfs/imfs_fifo.c, libfs/src/imfs/imfs_handlers_device.c, libfs/src/imfs/imfs_handlers_directory.c, libfs/src/imfs/imfs_handlers_link.c, libfs/src/imfs/imfs_handlers_memfile.c, libfs/src/imfs/miniimfs_init.c, libfs/src/rfs/rtems-rfs-rtems-dev.c, libfs/src/rfs/rtems-rfs-rtems-dir.c, libfs/src/rfs/rtems-rfs-rtems-file.c: Turn NULLs into default handlers.
Diffstat (limited to 'cpukit/libfs/src/dosfs/msdos_handlers_dir.c')
-rw-r--r--cpukit/libfs/src/dosfs/msdos_handlers_dir.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpukit/libfs/src/dosfs/msdos_handlers_dir.c b/cpukit/libfs/src/dosfs/msdos_handlers_dir.c
index 66e4e8c531..cc32af86d4 100644
--- a/cpukit/libfs/src/dosfs/msdos_handlers_dir.c
+++ b/cpukit/libfs/src/dosfs/msdos_handlers_dir.c
@@ -22,15 +22,15 @@ const rtems_filesystem_file_handlers_r msdos_dir_handlers = {
msdos_dir_open,
msdos_dir_close,
msdos_dir_read,
- NULL, /* msdos_dir_write */
- NULL, /* msdos_dir_ioctl */
+ rtems_filesystem_default_write,
+ rtems_filesystem_default_ioctl,
msdos_dir_lseek,
msdos_dir_stat,
msdos_dir_chmod,
- NULL, /* msdos_dir_ftruncate */
- NULL,
+ rtems_filesystem_default_ftruncate,
+ rtems_filesystem_default_fpathconf,
msdos_dir_sync,
msdos_dir_sync,
- NULL, /* msdos_dir_fcntl */
+ rtems_filesystem_default_fcntl,
msdos_dir_rmnod
};