diff options
author | Richard Sharpe <realrichardsharpe@gmail.com> | 2011-12-03 20:45:04 -0800 |
---|---|---|
committer | Richard Sharpe <sharpe@samba.org> | 2011-12-12 04:58:40 +0100 |
commit | 422494a8e630e2ca89386344eaa5346388698a32 (patch) | |
tree | 1757dd5f7258eae8d413f1e57f72bd3b533d86c7 /source3/modules/vfs_hpuxacl.c | |
parent | f452add2231906742c9fd119371cd4fd81a1bdd6 (diff) | |
download | samba-422494a8e630e2ca89386344eaa5346388698a32.tar.gz samba-422494a8e630e2ca89386344eaa5346388698a32.tar.xz 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_hpuxacl.c')
-rw-r--r-- | source3/modules/vfs_hpuxacl.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/modules/vfs_hpuxacl.c b/source3/modules/vfs_hpuxacl.c index 0f5af9d318d..5acfd1e25b7 100644 --- a/source3/modules/vfs_hpuxacl.c +++ b/source3/modules/vfs_hpuxacl.c @@ -1170,11 +1170,11 @@ static bool hpux_acl_check(HPUX_ACL_T hpux_acl, int count) /* VFS operations structure */ static struct vfs_fn_pointers hpuxacl_fns = { - .sys_acl_get_file = hpuxacl_sys_acl_get_file, - .sys_acl_get_fd = hpuxacl_sys_acl_get_fd, - .sys_acl_set_file = hpuxacl_sys_acl_set_file, - .sys_acl_set_fd = hpuxacl_sys_acl_set_fd, - .sys_acl_delete_def_file = hpuxacl_sys_acl_delete_def_file, + .sys_acl_get_file_fn = hpuxacl_sys_acl_get_file, + .sys_acl_get_fd_fn = hpuxacl_sys_acl_get_fd, + .sys_acl_set_file_fn = hpuxacl_sys_acl_set_file, + .sys_acl_set_fd_fn = hpuxacl_sys_acl_set_fd, + .sys_acl_delete_def_file_fn = hpuxacl_sys_acl_delete_def_file, }; NTSTATUS vfs_hpuxacl_init(void) |