From: Noel Power Date: Fri, 11 Jun 2021 15:33:30 +0000 (+0100) Subject: VFS: snapper: Remove SMB_VFS_CHFLAGS X-Git-Tag: tevent-0.11.0~117 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f243bb8c248fe48f4fd2cd87366fddb7f3e06c3;p=thirdparty%2Fsamba.git VFS: snapper: Remove SMB_VFS_CHFLAGS Signed-off-by: Noel Power Reviewed-by: Jeremy Allison --- diff --git a/source3/modules/vfs_snapper.c b/source3/modules/vfs_snapper.c index ba27a12367c..ad695853233 100644 --- a/source3/modules/vfs_snapper.c +++ b/source3/modules/vfs_snapper.c @@ -2391,23 +2391,6 @@ static int snapper_gmt_mkdirat(vfs_handle_struct *handle, mode); } -static int snapper_gmt_chflags(vfs_handle_struct *handle, - const struct smb_filename *smb_fname, - unsigned int flags) -{ - time_t timestamp = 0; - - if (!snapper_gmt_strip_snapshot(talloc_tos(), handle, - smb_fname, ×tamp, NULL)) { - return -1; - } - if (timestamp != 0) { - errno = EROFS; - return -1; - } - return SMB_VFS_NEXT_CHFLAGS(handle, smb_fname, flags); -} - static int snapper_gmt_fchflags(vfs_handle_struct *handle, struct files_struct *fsp, unsigned int flags) @@ -2702,7 +2685,6 @@ static struct vfs_fn_pointers snapper_fns = { .getxattrat_send_fn = vfs_not_implemented_getxattrat_send, .getxattrat_recv_fn = vfs_not_implemented_getxattrat_recv, .fsetxattr_fn = snapper_gmt_fsetxattr, - .chflags_fn = snapper_gmt_chflags, .fchflags_fn = snapper_gmt_fchflags, .get_real_filename_fn = snapper_gmt_get_real_filename, };