From 10324b177ed2c5de07039f035905b8272f51fbf7 Mon Sep 17 00:00:00 2001 From: Tim Prouty Date: Fri, 24 Jul 2009 12:13:07 -0700 Subject: s3: Allow filename_convert() to pass through unix_convert_flags and let the caller know if the path has a wildcard This also eliminates the need for resolve_dfspath(). --- source3/smbd/smb2_create.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3/smbd/smb2_create.c') diff --git a/source3/smbd/smb2_create.c b/source3/smbd/smb2_create.c index 511e448ac6..5e744f98f4 100644 --- a/source3/smbd/smb2_create.c +++ b/source3/smbd/smb2_create.c @@ -325,6 +325,8 @@ static struct tevent_req *smbd_smb2_create_send(TALLOC_CTX *mem_ctx, smbreq->conn, smbreq->flags2 & FLAGS2_DFS_PATHNAMES, in_name, + 0, + NULL, &smb_fname); if (!NT_STATUS_IS_OK(status)) { tevent_req_nterror(req, status); -- cgit