diff options
Diffstat (limited to 'sutils')
-rw-r--r-- | sutils/fstab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sutils/fstab.c b/sutils/fstab.c index e551fd42..6c756922 100644 --- a/sutils/fstab.c +++ b/sutils/fstab.c @@ -269,7 +269,7 @@ _fs_check_mounted (struct fs *fs) the mntent, but oh well, nothing we can do about that.] */ { err = file_get_translator_cntl (mount_point, &fs->fsys); - if (err == EINVAL || err == EOPNOTSUPP) + if (err == EINVAL || err == EOPNOTSUPP || err == ENXIO) /* Either the mount point doesn't exist, or wasn't mounted. */ { fs->fsys = MACH_PORT_NULL; |