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:
parent
855ca77f82
commit
c1ad69556c
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user