From 422494a8e630e2ca89386344eaa5346388698a32 Mon Sep 17 00:00:00 2001 From: Richard Sharpe Date: Sat, 3 Dec 2011 20:45:04 -0800 Subject: vfs: Make function pointer names consistent. They all end in _fn Autobuild-User: Richard Sharpe Autobuild-Date: Mon Dec 12 04:58:40 CET 2011 on sn-devel-104 --- source3/modules/vfs_default_quota.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/modules/vfs_default_quota.c') diff --git a/source3/modules/vfs_default_quota.c b/source3/modules/vfs_default_quota.c index fc95ef2e3b..7b9b0c8470 100644 --- a/source3/modules/vfs_default_quota.c +++ b/source3/modules/vfs_default_quota.c @@ -216,8 +216,8 @@ static int default_quota_set_quota(vfs_handle_struct *handle, enum SMB_QUOTA_TYP } static struct vfs_fn_pointers vfs_default_quota_fns = { - .get_quota = default_quota_get_quota, - .set_quota = default_quota_set_quota + .get_quota_fn = default_quota_get_quota, + .set_quota_fn = default_quota_set_quota }; NTSTATUS vfs_default_quota_init(void); -- cgit