diff options
author | 2010-06-29 04:09:32 +0000 | |
---|---|---|
committer | 2010-06-29 04:09:32 +0000 | |
commit | 7d8a2b95bb95bcde3304385f3db5e9c229078c5a (patch) | |
tree | 0fed14f233a0696ed96f43b62d2f68c53a358871 /sys/ntfs/ntfs_vfsops.c | |
parent | eliminate some very redundant SCARG usage. ok art (diff) | |
download | wireguard-openbsd-7d8a2b95bb95bcde3304385f3db5e9c229078c5a.tar.xz wireguard-openbsd-7d8a2b95bb95bcde3304385f3db5e9c229078c5a.zip |
makefstype was only used in ported from freebsd filesystems. fix them
and remove the function. ok thib
Diffstat (limited to 'sys/ntfs/ntfs_vfsops.c')
-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; |