summaryrefslogtreecommitdiff
path: root/source3/smbd/smb2_create.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2013-12-03 10:19:09 -0800
committerJeremy Allison <jra@samba.org>2013-12-09 09:48:48 -0800
commit874318a97868e08837a1febb1be8e8a167b5ae0f (patch)
tree96916c2c801079db778d23461ebd1585a30f33a1 /source3/smbd/smb2_create.c
parent5b49fe24c906cbae12beff7a1b45de6809258cab (diff)
downloadsamba-874318a97868e08837a1febb1be8e8a167b5ae0f.tar.gz
smbd: change flag name from UCF_CREATING_FILE to UCF_PREP_CREATEFILE
In preparation to using it for all open calls. BUG: https://bugzilla.samba.org/show_bug.cgi?id=10297 Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org>
Diffstat (limited to 'source3/smbd/smb2_create.c')
-rw-r--r--source3/smbd/smb2_create.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/smb2_create.c b/source3/smbd/smb2_create.c
index 38eba4f9ceb..74881c6d043 100644
--- a/source3/smbd/smb2_create.c
+++ b/source3/smbd/smb2_create.c
@@ -892,7 +892,7 @@ static struct tevent_req *smbd_smb2_create_send(TALLOC_CTX *mem_ctx,
smb1req->flags2 & FLAGS2_DFS_PATHNAMES,
fname,
(in_create_disposition == FILE_CREATE) ?
- UCF_CREATING_FILE : 0,
+ UCF_PREP_CREATEFILE : 0,
NULL, /* ppath_contains_wcards */
&smb_fname);
if (!NT_STATUS_IS_OK(status)) {