1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-26 01:49:31 +03:00

vfs_fruit: just log failing AppleDouble conversion

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15378

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
(cherry picked from commit 3bf97f19c3)
This commit is contained in:
Ralph Boehme
2023-05-22 12:25:04 +02:00
committed by Jule Anger
parent 0db5f559d0
commit 5c5ab78d93

View File

@ -4305,8 +4305,8 @@ static NTSTATUS fruit_create_file(vfs_handle_struct *handle,
macos_string_replace_map,
conv_flags);
if (ret != 0) {
DBG_ERR("ad_convert() failed\n");
return NT_STATUS_UNSUCCESSFUL;
DBG_ERR("ad_convert(\"%s\") failed\n",
smb_fname_str_dbg(smb_fname));
}
}
@ -4416,8 +4416,8 @@ static NTSTATUS fruit_freaddir_attr(struct vfs_handle_struct *handle,
macos_string_replace_map,
conv_flags);
if (ret != 0) {
DBG_ERR("ad_convert() failed\n");
return NT_STATUS_UNSUCCESSFUL;
DBG_ERR("ad_convert(\"%s\") failed\n",
fsp_str_dbg(fsp));
}
*pattr_data = talloc_zero(mem_ctx, struct readdir_attr_data);