aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/nwfs
diff options
context:
space:
mode:
authorNate Lawson <njl@FreeBSD.org>2002-09-14 09:02:28 +0000
committerNate Lawson <njl@FreeBSD.org>2002-09-14 09:02:28 +0000
commit06be2aaa8320ba839a837d20e35f35c3efdf7587 (patch)
treee9205d0e4985af46af0db4bd26e9662b1c25f85b /sys/fs/nwfs
parentfcfa0b48b3a9b9d6f08bf4dd6a122d2efbe3b977 (diff)
Notes
Diffstat (limited to 'sys/fs/nwfs')
-rw-r--r--sys/fs/nwfs/nwfs_node.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/nwfs/nwfs_node.c b/sys/fs/nwfs/nwfs_node.c
index daf51e107fd5f..7a85d55e98539 100644
--- a/sys/fs/nwfs/nwfs_node.c
+++ b/sys/fs/nwfs/nwfs_node.c
@@ -170,7 +170,7 @@ rescan:
* elsewhere if MALLOC should block.
*/
MALLOC(np, struct nwnode *, sizeof *np, M_NWNODE, M_WAITOK | M_ZERO);
- error = getnewvnode(VT_NWFS, mp, nwfs_vnodeop_p, &vp);
+ error = getnewvnode("nwfs", mp, nwfs_vnodeop_p, &vp);
if (error) {
*vpp = NULL;
FREE(np, M_NWNODE);