Module Name: src
Committed By: dholland
Date: Mon Nov 5 17:16:59 UTC 2012
Modified Files:
src/sys/fs/unionfs: unionfs_vfsops.c
Log Message:
Fix build of fs/unionfs (the extra unused copy of onionfs) for the
quota changes.
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/fs/unionfs/unionfs_vfsops.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/fs/unionfs/unionfs_vfsops.c
diff -u src/sys/fs/unionfs/unionfs_vfsops.c:1.9 src/sys/fs/unionfs/unionfs_vfsops.c:1.10
--- src/sys/fs/unionfs/unionfs_vfsops.c:1.9 Sun Mar 6 17:08:35 2011
+++ src/sys/fs/unionfs/unionfs_vfsops.c Mon Nov 5 17:16:59 2012
@@ -371,7 +371,7 @@ unionfs_root(struct mount *mp, struct vn
}
int
-unionfs_quotactl(struct mount *mp, prop_dictionary_t dict)
+unionfs_quotactl(struct mount *mp, struct quotactl_args *args)
{
struct unionfs_mount *ump;
@@ -380,7 +380,7 @@ unionfs_quotactl(struct mount *mp, prop_
/*
* 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