summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_onefs.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/modules/vfs_onefs.c')
-rw-r--r--source3/modules/vfs_onefs.c64
1 files changed, 32 insertions, 32 deletions
diff --git a/source3/modules/vfs_onefs.c b/source3/modules/vfs_onefs.c
index efc8b8aae2..5866eb49c8 100644
--- a/source3/modules/vfs_onefs.c
+++ b/source3/modules/vfs_onefs.c
@@ -256,40 +256,40 @@ static uint32_t onefs_fs_capabilities(struct vfs_handle_struct *handle, enum tim
static struct vfs_fn_pointers onefs_fns = {
.connect_fn = onefs_connect,
- .fs_capabilities = onefs_fs_capabilities,
- .opendir = onefs_opendir,
- .readdir = onefs_readdir,
- .seekdir = onefs_seekdir,
- .telldir = onefs_telldir,
- .rewind_dir = onefs_rewinddir,
- .mkdir = onefs_mkdir,
- .closedir = onefs_closedir,
- .init_search_op = onefs_init_search_op,
+ .fs_capabilities_fn = onefs_fs_capabilities,
+ .opendir_fn = onefs_opendir,
+ .readdir_fn = onefs_readdir,
+ .seekdir_fn = onefs_seekdir,
+ .telldir_fn = onefs_telldir,
+ .rewind_dir_fn = onefs_rewinddir,
+ .mkdir_fn = onefs_mkdir,
+ .closedir_fn = onefs_closedir,
+ .init_search_op_fn = onefs_init_search_op,
.open_fn = onefs_open,
- .create_file = onefs_create_file,
+ .create_file_fn = onefs_create_file,
.close_fn = onefs_close,
- .sendfile = onefs_sendfile,
- .recvfile = onefs_recvfile,
- .rename = onefs_rename,
- .stat = onefs_stat,
- .fstat = onefs_fstat,
- .lstat = onefs_lstat,
- .get_alloc_size = onefs_get_alloc_size,
- .unlink = onefs_unlink,
- .ntimes = onefs_ntimes,
- .file_id_create = onefs_file_id_create,
- .streaminfo = onefs_streaminfo,
- .brl_lock_windows = onefs_brl_lock_windows,
- .brl_unlock_windows = onefs_brl_unlock_windows,
- .brl_cancel_windows = onefs_brl_cancel_windows,
- .strict_lock = onefs_strict_lock,
- .strict_unlock = onefs_strict_unlock,
- .notify_watch = onefs_notify_watch,
- .fget_nt_acl = onefs_fget_nt_acl,
- .get_nt_acl = onefs_get_nt_acl,
- .fset_nt_acl = onefs_fset_nt_acl,
- .statvfs = onefs_statvfs,
- .get_real_filename = onefs_get_real_filename,
+ .sendfile_fn = onefs_sendfile,
+ .recvfile_fn = onefs_recvfile,
+ .rename_fn = onefs_rename,
+ .stat_fn = onefs_stat,
+ .fstat_fn = onefs_fstat,
+ .lstat_fn = onefs_lstat,
+ .get_alloc_size_fn = onefs_get_alloc_size,
+ .unlink_fn = onefs_unlink,
+ .ntimes_fn = onefs_ntimes,
+ .file_id_create_fn = onefs_file_id_create,
+ .streaminfo_fn = onefs_streaminfo,
+ .brl_lock_windows_fn = onefs_brl_lock_windows,
+ .brl_unlock_windows_fn = onefs_brl_unlock_windows,
+ .brl_cancel_windows_fn = onefs_brl_cancel_windows,
+ .strict_lock_fn = onefs_strict_lock,
+ .strict_unlock_fn = onefs_strict_unlock,
+ .notify_watch_fn = onefs_notify_watch,
+ .fget_nt_acl_fn = onefs_fget_nt_acl,
+ .get_nt_acl_fn = onefs_get_nt_acl,
+ .fset_nt_acl_fn = onefs_fset_nt_acl,
+ .statvfs_fn = onefs_statvfs,
+ .get_real_filename_fn = onefs_get_real_filename,
};
NTSTATUS vfs_onefs_init(void)