diff options
author | Volker Lendecke <vl@samba.org> | 2013-04-11 15:32:39 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-04-17 14:49:55 -0700 |
commit | 33037d80d5f6bf551809c05abea75f0a7d2ddf17 (patch) | |
tree | ea5a67128ad4963e8d9ce814fa60290b2412e3af /source3/modules | |
parent | 19ee0708538a2358584de2a5498a470c5a168ec3 (diff) | |
download | samba-33037d80d5f6bf551809c05abea75f0a7d2ddf17.tar.gz samba-33037d80d5f6bf551809c05abea75f0a7d2ddf17.tar.bz2 samba-33037d80d5f6bf551809c05abea75f0a7d2ddf17.zip |
vfs: Convert shadow_copy2_unlink to cp_smb_filename
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_shadow_copy2.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/modules/vfs_shadow_copy2.c b/source3/modules/vfs_shadow_copy2.c index 1cf8e37ba4..03b2e07508 100644 --- a/source3/modules/vfs_shadow_copy2.c +++ b/source3/modules/vfs_shadow_copy2.c @@ -710,7 +710,6 @@ static int shadow_copy2_unlink(vfs_handle_struct *handle, char *stripped; int ret, saved_errno; struct smb_filename *conv; - NTSTATUS status; if (!shadow_copy2_strip_snapshot(talloc_tos(), handle, smb_fname->base_name, @@ -720,8 +719,8 @@ static int shadow_copy2_unlink(vfs_handle_struct *handle, if (timestamp == 0) { return SMB_VFS_NEXT_UNLINK(handle, smb_fname); } - status = copy_smb_filename(talloc_tos(), smb_fname, &conv); - if (!NT_STATUS_IS_OK(status)) { + conv = cp_smb_filename(talloc_tos(), smb_fname); + if (conv == NULL) { errno = ENOMEM; return -1; } |