diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2010-06-29 04:09:33 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2010-06-29 04:09:33 +0000 |
commit | 9d1f1706a17992becd55e7fd38d41128fbfdca86 (patch) | |
tree | cedcaef0ff9d8afcd21cca6705f5a2bdeafb57a4 /sys/ntfs | |
parent | f4321cdc2fe2069471ff0680eba9cfe45504d2c7 (diff) |
makefstype was only used in ported from freebsd filesystems. fix them
and remove the function. ok thib
Diffstat (limited to 'sys/ntfs')
-rw-r--r-- | sys/ntfs/ntfs_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ntfs/ntfs_vfsops.c b/sys/ntfs/ntfs_vfsops.c index 0edb1b57c96..969be3f68a9 100644 --- a/sys/ntfs/ntfs_vfsops.c +++ b/sys/ntfs/ntfs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ntfs_vfsops.c,v 1.15 2009/08/13 16:00:53 jasper Exp $ */ +/* $OpenBSD: ntfs_vfsops.c,v 1.16 2010/06/29 04:09:32 tedu Exp $ */ /* $NetBSD: ntfs_vfsops.c,v 1.7 2003/04/24 07:50:19 christos Exp $ */ /*- @@ -472,7 +472,7 @@ ntfs_mountfs(devvp, mp, argsp, p) } mp->mnt_stat.f_fsid.val[0] = dev; - mp->mnt_stat.f_fsid.val[1] = makefstype(MOUNT_NTFS); + mp->mnt_stat.f_fsid.val[1] = mp->mnt_vfc->vfc_typenum; mp->mnt_maxsymlinklen = 0; mp->mnt_flag |= MNT_LOCAL; devvp->v_specmountpoint = mp; |