1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

vfs: Convert hpuxacl_sys_acl_set_file to synthetic_smb_fname

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Volker Lendecke 2013-04-12 10:56:53 +02:00 committed by Jeremy Allison
parent 855ca77f82
commit c1ad69556c

View File

@ -221,9 +221,9 @@ int hpuxacl_sys_acl_set_file(vfs_handle_struct *handle,
DEBUG(10, ("hpuxacl_sys_acl_set_file called for file '%s'\n",
name));
status = create_synthetic_smb_fname(talloc_tos(), name, NULL, NULL,
&smb_fname);
if (!NT_STATUS_IS_OK(status)) {
smb_fname = synthetic_smb_fname(talloc_tos(), name, NULL, NULL);
if (smb_fname == NULL) {
status = NT_STATUS_NO_MEMORY;
goto done;
}