From cb57dd08ddaba1f3cd7d4ac5d56431f120cd8f17 Mon Sep 17 00:00:00 2001 From: rodrigc Date: Mon, 17 Oct 2005 03:29:53 +0000 Subject: Unconditionally mount a CD9660 filesystem as read-only, instead of returning EROFS if we forget to mount it as read-only. --- sys/fs/cd9660/cd9660_vfsops.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'sys/fs/cd9660') 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) -- cgit v1.1