diff options
Diffstat (limited to 'sys/fs/unionfs/union_vnops.c')
-rw-r--r-- | sys/fs/unionfs/union_vnops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/unionfs/union_vnops.c b/sys/fs/unionfs/union_vnops.c index df1935b1651e..0a1be17102af 100644 --- a/sys/fs/unionfs/union_vnops.c +++ b/sys/fs/unionfs/union_vnops.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * @(#)union_vnops.c 8.6 (Berkeley) 2/17/94 - * $Id: union_vnops.c,v 1.7 1994/10/10 07:55:48 phk Exp $ + * $Id: union_vnops.c,v 1.8 1994/11/04 14:41:46 davidg Exp $ */ #include <sys/param.h> @@ -919,7 +919,7 @@ union_link(ap) VREF(vp); vrele(ap->a_tdvp); - error = VOP_LINK(dvp, vp, ap->a_cnp); + error = VOP_LINK(vp, dvp, ap->a_cnp); } else { /* * XXX: need to copy to upper layer |