From 6ea517191569b347efa31c53c9198908cf552b9a Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 12 Jun 2014 08:51:44 +0200 Subject: [PATCH] s3:smbd: use req->xconn in smb_request_done() Signed-off-by: Stefan Metzmacher Reviewed-by: Volker Lendecke Reviewed-by: Michael Adam --- source3/smbd/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/smbd/process.c b/source3/smbd/process.c index 66cb95f85a4..77ecdb95b2a 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; -- 2.11.4.GIT