summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-06-14 20:18:56 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-06-14 20:18:56 +0000
commit4ecc390933de3f8be570aa67870d4263e6d99b18 (patch)
treec57dc91036ce897cc3a1c7a28d0c6ae0fe9c4385 /cpukit/libcsupport/src
parentWrong prototype corrected. (diff)
downloadrtems-4ecc390933de3f8be570aa67870d4263e6d99b18.tar.bz2
RTEMS_FILESYSTEM_READ_WRITE_ONLY changed to RTEMS_FILESYSTEM_READ_WRITE
for simplicity.
Diffstat (limited to 'cpukit/libcsupport/src')
-rw-r--r--cpukit/libcsupport/src/mount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libcsupport/src/mount.c b/cpukit/libcsupport/src/mount.c
index e242e1a8ff..c4b62c3a28 100644
--- a/cpukit/libcsupport/src/mount.c
+++ b/cpukit/libcsupport/src/mount.c
@@ -273,7 +273,7 @@ rtems_filesystem_options_t get_file_system_options(
if ( strcasecmp( "RO", fsoptions ) == 0 )
return RTEMS_FILESYSTEM_READ_ONLY;
if ( strcasecmp( "RW", fsoptions ) == 0 )
- return RTEMS_FILESYSTEM_READ_WRITE_ONLY;
+ return RTEMS_FILESYSTEM_READ_WRITE;
else
return RTEMS_FILESYSTEM_BAD_OPTIONS;
}