diff options
Diffstat (limited to 'sys/isofs/cd9660/cd9660_vfsops.c')
-rw-r--r-- | sys/isofs/cd9660/cd9660_vfsops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/isofs/cd9660/cd9660_vfsops.c b/sys/isofs/cd9660/cd9660_vfsops.c index e998f61..9500695 100644 --- a/sys/isofs/cd9660/cd9660_vfsops.c +++ b/sys/isofs/cd9660/cd9660_vfsops.c @@ -201,7 +201,7 @@ cd9660_omount(mp, path, data, td) struct iso_mnt *imp = 0; struct nameidata ndp; - if (path == NULL) /* We are doing the initial root mount */ + if (mp->mnt_flag & MNT_ROOTFS) return (iso_mountroot(mp, td)); if ((error = copyin(data, (caddr_t)&args, sizeof (struct iso_args)))) return (error); |