From 033185e2a1b2892fe8dc74a18a38e5e13e08cb22 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 23 Jul 2009 20:28:58 -0400 Subject: Make the smbd VFS typesafe --- source3/modules/vfs_notify_fam.c | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) (limited to 'source3/modules/vfs_notify_fam.c') diff --git a/source3/modules/vfs_notify_fam.c b/source3/modules/vfs_notify_fam.c index aacc52e68c..8f00c9207f 100644 --- a/source3/modules/vfs_notify_fam.c +++ b/source3/modules/vfs_notify_fam.c @@ -283,16 +283,8 @@ static NTSTATUS fam_watch(vfs_handle_struct *vfs_handle, /* VFS operations structure */ -static vfs_op_tuple notify_fam_op_tuples[] = { - - {SMB_VFS_OP(fam_watch), - SMB_VFS_OP_NOTIFY_WATCH, - SMB_VFS_LAYER_OPAQUE}, - - {SMB_VFS_OP(NULL), - SMB_VFS_OP_NOOP, - SMB_VFS_LAYER_NOOP} - +static struct vfs_fn_pointers notify_fam_fns = { + .notify_watch = fam_watch, }; @@ -300,5 +292,5 @@ NTSTATUS vfs_notify_fam_init(void); NTSTATUS vfs_notify_fam_init(void) { return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "notify_fam", - notify_fam_op_tuples); + ¬ify_fam_fns); } -- cgit