summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_linux_xfs_sgid.c
diff options
context:
space:
mode:
authorRichard Sharpe <realrichardsharpe@gmail.com>2011-12-03 20:45:04 -0800
committerRichard Sharpe <sharpe@samba.org>2011-12-12 04:58:40 +0100
commit422494a8e630e2ca89386344eaa5346388698a32 (patch)
tree1757dd5f7258eae8d413f1e57f72bd3b533d86c7 /source3/modules/vfs_linux_xfs_sgid.c
parentf452add2231906742c9fd119371cd4fd81a1bdd6 (diff)
downloadsamba-422494a8e630e2ca89386344eaa5346388698a32.tar.gz
samba-422494a8e630e2ca89386344eaa5346388698a32.tar.bz2
samba-422494a8e630e2ca89386344eaa5346388698a32.zip
vfs: Make function pointer names consistent. They all end in _fn
Autobuild-User: Richard Sharpe <sharpe@samba.org> Autobuild-Date: Mon Dec 12 04:58:40 CET 2011 on sn-devel-104
Diffstat (limited to 'source3/modules/vfs_linux_xfs_sgid.c')
-rw-r--r--source3/modules/vfs_linux_xfs_sgid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/modules/vfs_linux_xfs_sgid.c b/source3/modules/vfs_linux_xfs_sgid.c
index fee12b0110..5a33f63d26 100644
--- a/source3/modules/vfs_linux_xfs_sgid.c
+++ b/source3/modules/vfs_linux_xfs_sgid.c
@@ -95,8 +95,8 @@ static int linux_xfs_sgid_chmod_acl(vfs_handle_struct *handle,
}
static struct vfs_fn_pointers linux_xfs_sgid_fns = {
- .mkdir = linux_xfs_sgid_mkdir,
- .chmod_acl = linux_xfs_sgid_chmod_acl,
+ .mkdir_fn = linux_xfs_sgid_mkdir,
+ .chmod_acl_fn = linux_xfs_sgid_chmod_acl,
};
NTSTATUS vfs_linux_xfs_sgid_init(void);