From: Jeremy Allison Date: Mon, 22 Mar 2021 18:54:14 +0000 (-0700) Subject: s3: VFS: media_harmony: Remove mh_removexattr(). No longer called. X-Git-Tag: tevent-0.11.0~1269 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e12449e047e6487f6587fd5e4b9c60e0f08826ea;p=thirdparty%2Fsamba.git s3: VFS: media_harmony: Remove mh_removexattr(). No longer called. Signed-off-by: Jeremy Allison Reviewed-by: Ralph Boehme --- diff --git a/source3/modules/vfs_media_harmony.c b/source3/modules/vfs_media_harmony.c index 67ac950cbd7..06138ff65e0 100644 --- a/source3/modules/vfs_media_harmony.c +++ b/source3/modules/vfs_media_harmony.c @@ -2129,38 +2129,6 @@ out: return ret; } -/* - * Success: return 0 - * Failure: set errno, return -1 - * In this case, "name" is an attr name. - */ -static int mh_removexattr(struct vfs_handle_struct *handle, - const struct smb_filename *smb_fname, - const char *name) -{ - int status; - struct smb_filename *clientFname = NULL; - - DEBUG(MH_INFO_DEBUG, ("Entering mh_removexattr\n")); - if (!is_in_media_files(smb_fname->base_name)) { - status = SMB_VFS_NEXT_REMOVEXATTR(handle, smb_fname, name); - goto out; - } - - status = alloc_get_client_smb_fname(handle, - talloc_tos(), - smb_fname, - &clientFname); - if (status != 0) { - goto err; - } - status = SMB_VFS_NEXT_REMOVEXATTR(handle, clientFname, name); -err: - TALLOC_FREE(clientFname); -out: - return status; -} - /* * Success: return 0 * Failure: set errno, return -1 @@ -2218,7 +2186,6 @@ static struct vfs_fn_pointers vfs_mh_fns = { .getxattr_fn = mh_getxattr, .getxattrat_send_fn = vfs_not_implemented_getxattrat_send, .getxattrat_recv_fn = vfs_not_implemented_getxattrat_recv, - .removexattr_fn = mh_removexattr, /* aio operations */ };