summaryrefslogtreecommitdiffstats
path: root/source3/smbd/smb2_create.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2014-09-16 06:55:39 +0200
committerMichael Adam <obnox@samba.org>2014-09-19 09:15:12 +0200
commitd8cffad8e00e7c6bd6727e00b247bc5443ea053d (patch)
tree62c0df6f95b1ec17803719edbd720b4b39e3e519 /source3/smbd/smb2_create.c
parent333707fa376cc27476d1fef2d291c6ae6482b1d6 (diff)
downloadsamba-d8cffad8e00e7c6bd6727e00b247bc5443ea053d.tar.gz
samba-d8cffad8e00e7c6bd6727e00b247bc5443ea053d.tar.xz
samba-d8cffad8e00e7c6bd6727e00b247bc5443ea053d.zip
s3:smbd: pass smbXsrv_connection to open_was_deferred()
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Michael Adam <obnox@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 18534349bd..3225a82a53 100644
--- a/source3/smbd/smb2_create.c
+++ b/source3/smbd/smb2_create.c
@@ -956,7 +956,7 @@ static struct tevent_req *smbd_smb2_create_send(TALLOC_CTX *mem_ctx,
&result,
&info);
if (!NT_STATUS_IS_OK(status)) {
- if (open_was_deferred(smb1req->sconn, smb1req->mid)) {
+ if (open_was_deferred(smb1req->xconn, smb1req->mid)) {
return req;
}
tevent_req_nterror(req, status);