diff options
author | Stefan Metzmacher <metze@samba.org> | 2014-06-12 08:51:44 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2014-08-06 09:51:14 +0200 |
commit | 6ea517191569b347efa31c53c9198908cf552b9a (patch) | |
tree | fd6c9dae37b8b2d9526b9ece99ea792dd667d268 /source3/smbd/process.c | |
parent | 5361b123af29a69490d8145558fc7057fd736c46 (diff) | |
download | samba-6ea517191569b347efa31c53c9198908cf552b9a.tar.gz samba-6ea517191569b347efa31c53c9198908cf552b9a.tar.xz samba-6ea517191569b347efa31c53c9198908cf552b9a.zip |
s3:smbd: use req->xconn in smb_request_done()
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/smbd/process.c')
-rw-r--r-- | source3/smbd/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c index 66cb95f85a..77ecdb95b2 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -1764,7 +1764,7 @@ void smb_request_done(struct smb_request *req) next->vuid = SVAL(req->outbuf, smb_uid); next->tid = SVAL(req->outbuf, smb_tid); - status = smb1srv_tcon_lookup(req->sconn->conn, req->tid, + status = smb1srv_tcon_lookup(req->xconn, req->tid, now, &tcon); if (NT_STATUS_IS_OK(status)) { req->conn = tcon->compat; |