summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_not_implemented.c
diff options
context:
space:
mode:
authorSamuel Cabrero <scabrero@samba.org>2021-05-13 13:36:31 +0200
committerJeremy Allison <jra@samba.org>2021-05-14 20:04:28 +0000
commit96f1af04ffce5e276443e390d5d6339dbf17a06d (patch)
tree0ea79d6a87597a91833314b9e1125c3e9ca25902 /source3/modules/vfs_not_implemented.c
parent1fa6d75b434f27962f76b339d6a4bb28756c836a (diff)
downloadsamba-96f1af04ffce5e276443e390d5d6339dbf17a06d.tar.gz
s3: VFS: Remove SMB_VFS_READDIR_ATTR(), no longer used
---------------- / \ / REST \ / IN \ / PEACE \ / \ | | | SMB_VFS_READDIR_ATTR | | | | | | 13 May | | 2021 | | | | | *| * * * | * _________)/\\_//(\/(/\)/\//\/\///\/|_)_______ Signed-off-by: Samuel Cabrero <scabrero@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/modules/vfs_not_implemented.c')
-rw-r--r--source3/modules/vfs_not_implemented.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/source3/modules/vfs_not_implemented.c b/source3/modules/vfs_not_implemented.c
index 257cbd6e7d7..b4139644fef 100644
--- a/source3/modules/vfs_not_implemented.c
+++ b/source3/modules/vfs_not_implemented.c
@@ -700,14 +700,6 @@ NTSTATUS vfs_not_implemented_fsctl(struct vfs_handle_struct *handle,
return NT_STATUS_NOT_IMPLEMENTED;
}
-NTSTATUS vfs_not_implemented_readdir_attr(struct vfs_handle_struct *handle,
- const struct smb_filename *fname,
- TALLOC_CTX *mem_ctx,
- struct readdir_attr_data **pattr_data)
-{
- return NT_STATUS_NOT_IMPLEMENTED;
-}
-
NTSTATUS vfs_not_implemented_freaddir_attr(struct vfs_handle_struct *handle,
struct files_struct *fsp,
TALLOC_CTX *mem_ctx,
@@ -1076,7 +1068,6 @@ static struct vfs_fn_pointers vfs_not_implemented_fns = {
.strict_lock_check_fn = vfs_not_implemented_strict_lock_check,
.translate_name_fn = vfs_not_implemented_translate_name,
.fsctl_fn = vfs_not_implemented_fsctl,
- .readdir_attr_fn = vfs_not_implemented_readdir_attr,
.freaddir_attr_fn = vfs_not_implemented_freaddir_attr,
.audit_file_fn = vfs_not_implemented_audit_file,