diff options
author | Ralph Boehme <slow@samba.org> | 2014-11-26 14:12:51 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-12-04 22:11:07 +0100 |
commit | 142db4048f41f793d9b919a93877d547ff593c6d (patch) | |
tree | 88cfa7b21169cfb5de192b3b5a112bb9e41a6cf0 /source3/smbd/nttrans.c | |
parent | af846264d89f21ac7db8d0cdf6e861ba9cc74151 (diff) | |
download | samba-142db4048f41f793d9b919a93877d547ff593c6d.tar.gz |
s3:vfs: add create tags to SMB_VFS_CREATEFILE
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/smbd/nttrans.c')
-rw-r--r-- | source3/smbd/nttrans.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c index edad3e48e86..4423a44cbea 100644 --- a/source3/smbd/nttrans.c +++ b/source3/smbd/nttrans.c @@ -579,7 +579,8 @@ void reply_ntcreate_and_X(struct smb_request *req) NULL, /* sd */ NULL, /* ea_list */ &fsp, /* result */ - &info); /* pinfo */ + &info, /* pinfo */ + NULL, NULL); /* create context */ if (!NT_STATUS_IS_OK(status)) { if (open_was_deferred(req->xconn, req->mid)) { @@ -1186,7 +1187,8 @@ static void call_nt_transact_create(connection_struct *conn, sd, /* sd */ ea_list, /* ea_list */ &fsp, /* result */ - &info); /* pinfo */ + &info, /* pinfo */ + NULL, NULL); /* create context */ if(!NT_STATUS_IS_OK(status)) { if (open_was_deferred(req->xconn, req->mid)) { @@ -1430,7 +1432,8 @@ static NTSTATUS copy_internals(TALLOC_CTX *ctx, NULL, /* sd */ NULL, /* ea_list */ &fsp1, /* result */ - &info); /* pinfo */ + &info, /* pinfo */ + NULL, NULL); /* create context */ if (!NT_STATUS_IS_OK(status)) { goto out; @@ -1455,7 +1458,8 @@ static NTSTATUS copy_internals(TALLOC_CTX *ctx, NULL, /* sd */ NULL, /* ea_list */ &fsp2, /* result */ - &info); /* pinfo */ + &info, /* pinfo */ + NULL, NULL); /* create context */ if (!NT_STATUS_IS_OK(status)) { close_file(NULL, fsp1, ERROR_CLOSE); |