Fix build of fs/unionfs (the extra unused copy of onionfs) for the

quota changes.
This commit is contained in:
dholland 2012-11-05 17:16:59 +00:00
parent 94522e611a
commit 26486df952
1 changed files with 2 additions and 2 deletions

View File

@ -371,7 +371,7 @@ unionfs_root(struct mount *mp, struct vnode **vpp)
} }
int int
unionfs_quotactl(struct mount *mp, prop_dictionary_t dict) unionfs_quotactl(struct mount *mp, struct quotactl_args *args)
{ {
struct unionfs_mount *ump; struct unionfs_mount *ump;
@ -380,7 +380,7 @@ unionfs_quotactl(struct mount *mp, prop_dictionary_t dict)
/* /*
* Writing is always performed to upper vnode. * Writing is always performed to upper vnode.
*/ */
return (VFS_QUOTACTL(ump->um_uppervp->v_mount, dict)); return (VFS_QUOTACTL(ump->um_uppervp->v_mount, args));
} }
int int