From: Jeremy Allison Date: Fri, 30 Aug 2019 21:33:22 +0000 (-0700) Subject: s3: VFS: vfs_media_harmony. Remove symlink_fn(). No longer used. X-Git-Tag: tevent-0.10.1~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b3d3904c65b87746dda37dc73e2c30eb5ce30dd;p=thirdparty%2Fsamba.git s3: VFS: vfs_media_harmony. Remove symlink_fn(). No longer used. Signed-off-by: Jeremy Allison Reviewed-by: Ralph Böhme --- diff --git a/source3/modules/vfs_media_harmony.c b/source3/modules/vfs_media_harmony.c index 8e64d80f43a..7e9df8a928d 100644 --- a/source3/modules/vfs_media_harmony.c +++ b/source3/modules/vfs_media_harmony.c @@ -1707,49 +1707,6 @@ out: return status; } -/* - * Success: return 0 - * Failure: set errno, return -1 - */ - -static int mh_symlink(vfs_handle_struct *handle, - const char *link_contents, - const struct smb_filename *new_smb_fname) -{ - int status = -1; - char *client_link_contents = NULL; - struct smb_filename *newclientFname = NULL; - - DEBUG(MH_INFO_DEBUG, ("Entering mh_symlink\n")); - if (!is_in_media_files(link_contents) && - !is_in_media_files(new_smb_fname->base_name)) { - status = SMB_VFS_NEXT_SYMLINK(handle, - link_contents, - new_smb_fname); - goto out; - } - - if ((status = alloc_get_client_path(handle, talloc_tos(), - link_contents, - &client_link_contents))) { - goto err; - } - if ((status = alloc_get_client_smb_fname(handle, talloc_tos(), - new_smb_fname, - &newclientFname))) { - goto err; - } - - status = SMB_VFS_NEXT_SYMLINK(handle, - client_link_contents, - newclientFname); -err: - TALLOC_FREE(client_link_contents); - TALLOC_FREE(newclientFname); -out: - return status; -} - /* * Success: return 0 * Failure: set errno, return -1 @@ -2377,7 +2334,6 @@ static struct vfs_fn_pointers vfs_mh_fns = { .lchown_fn = mh_lchown, .chdir_fn = mh_chdir, .ntimes_fn = mh_ntimes, - .symlink_fn = mh_symlink, .symlinkat_fn = mh_symlinkat, .readlinkat_fn = mh_readlinkat, .linkat_fn = mh_linkat,