diff options
| author | Olivier Houchard <cognet@FreeBSD.org> | 2007-02-21 00:30:09 +0000 |
|---|---|---|
| committer | Olivier Houchard <cognet@FreeBSD.org> | 2007-02-21 00:30:09 +0000 |
| commit | 9bf150092162223761429bb4ef8725d04c184eb8 (patch) | |
| tree | a8da7668a45d0c654594828d3050083b054857dd /sys | |
| parent | 7ee76f9d4e412bec836c40950dbcb18b02006aa6 (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/fs/ntfs/ntfs_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/ntfs/ntfs_vfsops.c b/sys/fs/ntfs/ntfs_vfsops.c index 30c7a5994796..e63fc8a82a57 100644 --- a/sys/fs/ntfs/ntfs_vfsops.c +++ b/sys/fs/ntfs/ntfs_vfsops.c @@ -326,10 +326,10 @@ ntfs_mountfs(devvp, mp, td) ntmp->ntm_bo = &devvp->v_bufobj; cs_local = vfs_getopts(mp->mnt_optnew, "cs_local", &error); - if (error) + if (error && error != ENOENT) goto out; cs_ntfs = vfs_getopts(mp->mnt_optnew, "cs_ntfs", &error); - if (error) + if (error && error != ENOENT) goto out; /* Copy in the 8-bit to Unicode conversion table */ /* Initialize Unicode to 8-bit table from 8toU table */ |
