From 851b9e9183ef598269aeb6c57f237a2599d701fa Mon Sep 17 00:00:00 2001 From: Christian Ambach Date: Thu, 15 Dec 2011 14:31:03 +0100 Subject: [PATCH] s3:vfs fix up vfs_gpfs after function pointer renames In 422494a8e630e2ca89386344eaa5346388698a32, vfs_gpfs.c was forgotten Autobuild-User: Christian Ambach Autobuild-Date: Thu Dec 15 21:08:02 CET 2011 on sn-devel-104 --- source3/modules/vfs_gpfs.c | 50 +++++++++++++++++++------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c index d879124cd92..ba6ec6dca3d 100644 --- a/source3/modules/vfs_gpfs.c +++ b/source3/modules/vfs_gpfs.c @@ -1323,32 +1323,32 @@ static int vfs_gpfs_open(struct vfs_handle_struct *handle, static struct vfs_fn_pointers vfs_gpfs_fns = { .connect_fn = vfs_gpfs_connect, - .fs_capabilities = vfs_gpfs_capabilities, - .kernel_flock = vfs_gpfs_kernel_flock, - .linux_setlease = vfs_gpfs_setlease, - .get_real_filename = vfs_gpfs_get_real_filename, - .fget_nt_acl = gpfsacl_fget_nt_acl, - .get_nt_acl = gpfsacl_get_nt_acl, - .fset_nt_acl = gpfsacl_fset_nt_acl, - .sys_acl_get_file = gpfsacl_sys_acl_get_file, - .sys_acl_get_fd = gpfsacl_sys_acl_get_fd, - .sys_acl_set_file = gpfsacl_sys_acl_set_file, - .sys_acl_set_fd = gpfsacl_sys_acl_set_fd, - .sys_acl_delete_def_file = gpfsacl_sys_acl_delete_def_file, - .chmod = vfs_gpfs_chmod, - .fchmod = vfs_gpfs_fchmod, - .close_fn = vfs_gpfs_close, - .setxattr = gpfs_set_xattr, - .getxattr = gpfs_get_xattr, - .stat = vfs_gpfs_stat, - .fstat = vfs_gpfs_fstat, - .lstat = vfs_gpfs_lstat, - .ntimes = vfs_gpfs_ntimes, - .is_offline = vfs_gpfs_is_offline, - .aio_force = vfs_gpfs_aio_force, - .sendfile = vfs_gpfs_sendfile, + .fs_capabilities_fn = vfs_gpfs_capabilities, + .kernel_flock_fn = vfs_gpfs_kernel_flock, + .linux_setlease_fn = vfs_gpfs_setlease, + .get_real_filename_fn = vfs_gpfs_get_real_filename, + .fget_nt_acl_fn = gpfsacl_fget_nt_acl, + .get_nt_acl_fn = gpfsacl_get_nt_acl, + .fset_nt_acl_fn = gpfsacl_fset_nt_acl, + .sys_acl_get_file_fn = gpfsacl_sys_acl_get_file, + .sys_acl_get_fd_fn = gpfsacl_sys_acl_get_fd, + .sys_acl_set_file_fn = gpfsacl_sys_acl_set_file, + .sys_acl_set_fd_fn = gpfsacl_sys_acl_set_fd, + .sys_acl_delete_def_file_fn = gpfsacl_sys_acl_delete_def_file, + .chmod_fn = vfs_gpfs_chmod, + .fchmod_fn = vfs_gpfs_fchmod, + .close_fn = vfs_gpfs_close, + .setxattr_fn = gpfs_set_xattr, + .getxattr_fn = gpfs_get_xattr, + .stat_fn = vfs_gpfs_stat, + .fstat_fn = vfs_gpfs_fstat, + .lstat_fn = vfs_gpfs_lstat, + .ntimes_fn = vfs_gpfs_ntimes, + .is_offline_fn = vfs_gpfs_is_offline, + .aio_force_fn = vfs_gpfs_aio_force, + .sendfile_fn = vfs_gpfs_sendfile, .open_fn = vfs_gpfs_open, - .ftruncate = vfs_gpfs_ftruncate + .ftruncate_fn = vfs_gpfs_ftruncate }; NTSTATUS vfs_gpfs_init(void); -- 2.34.1