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_posixacl.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source3/modules/vfs_posixacl.c') diff --git a/source3/modules/vfs_posixacl.c b/source3/modules/vfs_posixacl.c index e1c5b630cd..464099176d 100644 --- a/source3/modules/vfs_posixacl.c +++ b/source3/modules/vfs_posixacl.c @@ -364,11 +364,11 @@ static acl_t smb_acl_to_posix(const struct smb_acl_t *acl) /* VFS operations structure */ static struct vfs_fn_pointers posixacl_fns = { - .sys_acl_get_file = posixacl_sys_acl_get_file, - .sys_acl_get_fd = posixacl_sys_acl_get_fd, - .sys_acl_set_file = posixacl_sys_acl_set_file, - .sys_acl_set_fd = posixacl_sys_acl_set_fd, - .sys_acl_delete_def_file = posixacl_sys_acl_delete_def_file, + .sys_acl_get_file_fn = posixacl_sys_acl_get_file, + .sys_acl_get_fd_fn = posixacl_sys_acl_get_fd, + .sys_acl_set_file_fn = posixacl_sys_acl_set_file, + .sys_acl_set_fd_fn = posixacl_sys_acl_set_fd, + .sys_acl_delete_def_file_fn = posixacl_sys_acl_delete_def_file, }; NTSTATUS vfs_posixacl_init(void); -- cgit