summaryrefslogtreecommitdiffstats
path: root/sys/fs/cd9660/cd9660_vfsops.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/fs/cd9660/cd9660_vfsops.c')
-rw-r--r--sys/fs/cd9660/cd9660_vfsops.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/fs/cd9660/cd9660_vfsops.c b/sys/fs/cd9660/cd9660_vfsops.c
index 6266fb8..5eec0c9 100644
--- a/sys/fs/cd9660/cd9660_vfsops.c
+++ b/sys/fs/cd9660/cd9660_vfsops.c
@@ -135,8 +135,10 @@ cd9660_mount(struct mount *mp, struct thread *td)
struct nameidata ndp;
struct iso_mnt *imp = 0;
- if ((mp->mnt_flag & MNT_RDONLY) == 0)
- return (EROFS);
+ /*
+ * Unconditionally mount as read-only.
+ */
+ mp->mnt_flag |= MNT_RDONLY;
fspec = vfs_getopts(mp->mnt_optnew, "from", &error);
if (error)
OpenPOWER on IntegriCloud