summaryrefslogtreecommitdiff
path: root/sys/fs/nullfs
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2003-05-31 18:46:45 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2003-05-31 18:46:45 +0000
commitff81e317d49ab02b5e3abacff51d4465bb6eadab (patch)
tree8c31e0288e21b4a33932d698c35249a9aea5339b /sys/fs/nullfs
parentc7b24d7dcdf01a44dbe43401253fb9883118b0d1 (diff)
Notes
Diffstat (limited to 'sys/fs/nullfs')
-rw-r--r--sys/fs/nullfs/null_vfsops.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/fs/nullfs/null_vfsops.c b/sys/fs/nullfs/null_vfsops.c
index d6ca21115f6d..6ace1728603d 100644
--- a/sys/fs/nullfs/null_vfsops.c
+++ b/sys/fs/nullfs/null_vfsops.c
@@ -391,7 +391,10 @@ nullfs_vptofh(vp, fhp)
struct vnode *vp;
struct fid *fhp;
{
- return VFS_VPTOFH(NULLVPTOLOWERVP(vp), fhp);
+ struct vnode *lvp;
+
+ lvp = NULLVPTOLOWERVP(vp);
+ return VFS_VPTOFH(lvp, fhp);
}
static int