vfs: Make function pointer names consistent. They all end in _fn
[samba.git] / source3 / modules / vfs_default_quota.c
index fc95ef2e3b8807c6996ae1d3829a327da80fdad6..7b9b0c8470541ee609967a2bada548f9b14c6290 100644 (file)
@@ -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);