diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-10-08 09:17:11 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-10-08 09:52:23 +0200 |
commit | 9ca88eb10bd21e8cf08c55225ec82b1790162bbf (patch) | |
tree | 28685ad758b28e6db148bbe5fc92c33e1acdf494 /examples | |
parent | 10fdc9ad682d2871c7e89c20690f038a94808b13 (diff) | |
download | samba-9ca88eb10bd21e8cf08c55225ec82b1790162bbf.tar.gz |
examples/VFS: fix names in skel_opaque.c
metze
Diffstat (limited to 'examples')
-rw-r--r-- | examples/VFS/skel_opaque.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/VFS/skel_opaque.c b/examples/VFS/skel_opaque.c index 69a71473e12..57909e60b72 100644 --- a/examples/VFS/skel_opaque.c +++ b/examples/VFS/skel_opaque.c @@ -775,7 +775,7 @@ static int skel_set_offline(struct vfs_handle_struct *handle, const struct smb_f /* VFS operations structure */ -struct vfs_fn_pointers skel_transparent_fns = { +struct vfs_fn_pointers skel_opaque_fns = { /* Disk operations */ .connect_fn = skel_connect, @@ -915,7 +915,7 @@ struct vfs_fn_pointers skel_transparent_fns = { .set_offline = skel_set_offline }; -NTSTATUS vfs_skel_transparent_init(void) +NTSTATUS vfs_skel_opaque_init(void) { - return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "skel_transparent", &skel_transparent_fns); + return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "skel_opaque", &skel_opaque_fns); } |