summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/dosfs/msdos_handlers_file.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_file.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_file.c')
-rw-r--r--cpukit/libfs/src/dosfs/msdos_handlers_file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libfs/src/dosfs/msdos_handlers_file.c b/cpukit/libfs/src/dosfs/msdos_handlers_file.c
index 5dd89849c7..18d4fdd018 100644
--- a/cpukit/libfs/src/dosfs/msdos_handlers_file.c
+++ b/cpukit/libfs/src/dosfs/msdos_handlers_file.c
@@ -28,9 +28,9 @@ const rtems_filesystem_file_handlers_r msdos_file_handlers = {
msdos_file_stat,
msdos_file_chmod,
msdos_file_ftruncate,
- NULL,
+ rtems_filesystem_default_fpathconf,
msdos_file_sync,
msdos_file_datasync,
- NULL, /* msdos_file_fcntl */
+ rtems_filesystem_default_fcntl,
msdos_file_rmnod
};