From c9a220bdaf963fa8a4ede9a3b9eb52b6c10d718e Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 15 Apr 2013 11:11:43 +0200 Subject: smbd: Convert change_file_owner_to_parent to synthetic_smb_fname Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- source3/smbd/open.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'source3/smbd/open.c') diff --git a/source3/smbd/open.c b/source3/smbd/open.c index 1086e806fb..78b824541a 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -387,13 +387,12 @@ void change_file_owner_to_parent(connection_struct *conn, const char *inherit_from_dir, files_struct *fsp) { - struct smb_filename *smb_fname_parent = NULL; - NTSTATUS status; + struct smb_filename *smb_fname_parent; int ret; - status = create_synthetic_smb_fname(talloc_tos(), inherit_from_dir, - NULL, NULL, &smb_fname_parent); - if (!NT_STATUS_IS_OK(status)) { + smb_fname_parent = synthetic_smb_fname(talloc_tos(), inherit_from_dir, + NULL, NULL); + if (smb_fname_parent == NULL) { return; } -- cgit