From fecf225068e1f6127f55db63a32b8f29bdae51ff Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 11 Apr 2013 16:18:39 +0200 Subject: vfs: Convert cap_ntimes to cp_smb_filename Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- source3/modules/vfs_cap.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'source3/modules') diff --git a/source3/modules/vfs_cap.c b/source3/modules/vfs_cap.c index 895522b5e8..c52e30c299 100644 --- a/source3/modules/vfs_cap.c +++ b/source3/modules/vfs_cap.c @@ -305,7 +305,6 @@ static int cap_ntimes(vfs_handle_struct *handle, { struct smb_filename *smb_fname_tmp = NULL; char *cappath = NULL; - NTSTATUS status; int ret; cappath = capencode(talloc_tos(), smb_fname->base_name); @@ -316,10 +315,9 @@ static int cap_ntimes(vfs_handle_struct *handle, } /* Setup temporary smb_filename structs. */ - status = copy_smb_filename(talloc_tos(), smb_fname, - &smb_fname_tmp); - if (!NT_STATUS_IS_OK(status)) { - errno = map_errno_from_nt_status(status); + smb_fname_tmp = cp_smb_filename(talloc_tos(), smb_fname); + if (smb_fname_tmp == NULL) { + errno = ENOMEM; return -1; } -- cgit