diff options
author | Stefan Metzmacher <metze@samba.org> | 2014-09-16 06:55:39 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2014-09-19 09:15:12 +0200 |
commit | d8cffad8e00e7c6bd6727e00b247bc5443ea053d (patch) | |
tree | 62c0df6f95b1ec17803719edbd720b4b39e3e519 /source3/smbd/smb2_create.c | |
parent | 333707fa376cc27476d1fef2d291c6ae6482b1d6 (diff) | |
download | samba-d8cffad8e00e7c6bd6727e00b247bc5443ea053d.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/smb2_create.c b/source3/smbd/smb2_create.c index 18534349bdd..3225a82a53c 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); |