summaryrefslogtreecommitdiff
path: root/sys/isofs
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2010-06-29 04:09:33 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2010-06-29 04:09:33 +0000
commit9d1f1706a17992becd55e7fd38d41128fbfdca86 (patch)
treecedcaef0ff9d8afcd21cca6705f5a2bdeafb57a4 /sys/isofs
parentf4321cdc2fe2069471ff0680eba9cfe45504d2c7 (diff)
makefstype was only used in ported from freebsd filesystems. fix them
and remove the function. ok thib
Diffstat (limited to 'sys/isofs')
-rw-r--r--sys/isofs/udf/udf_vfsops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/isofs/udf/udf_vfsops.c b/sys/isofs/udf/udf_vfsops.c
index 40875383e6d..627c79be718 100644
--- a/sys/isofs/udf/udf_vfsops.c
+++ b/sys/isofs/udf/udf_vfsops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: udf_vfsops.c,v 1.32 2009/12/19 00:27:17 krw Exp $ */
+/* $OpenBSD: udf_vfsops.c,v 1.33 2010/06/29 04:09:32 tedu Exp $ */
/*
* Copyright (c) 2001, 2002 Scott Long <scottl@freebsd.org>
@@ -256,7 +256,7 @@ udf_mountfs(struct vnode *devvp, struct mount *mp, uint32_t lb, struct proc *p)
mp->mnt_data = (qaddr_t) ump;
mp->mnt_stat.f_fsid.val[0] = devvp->v_rdev;
- mp->mnt_stat.f_fsid.val[1] = makefstype(MOUNT_UDF);
+ mp->mnt_stat.f_fsid.val[1] = mp->mnt_vfc->vfc_typenum;
mp->mnt_flag |= MNT_LOCAL;
ump->um_mountp = mp;