From bfc38d74ccc3a5ca378ef718ae19dfc1a1d05d7e Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 2 Jul 2012 13:31:12 +0200 Subject: [PATCH] s3:smbd:smb2: change smbXsrv_tcon0 to smbXsrv_tcon in smbd_smb2_request_check_tcon() smbXsrv_tcon0 is the internal name for the (current) version0 of the structure. Externally, only smbXsrv_tcon should be used. --- source3/smbd/smb2_server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/smbd/smb2_server.c b/source3/smbd/smb2_server.c index 0abd4fcd640..c7f9129b123 100644 --- a/source3/smbd/smb2_server.c +++ b/source3/smbd/smb2_server.c @@ -1317,7 +1317,7 @@ static NTSTATUS smbd_smb2_request_check_tcon(struct smbd_smb2_request *req) int i = req->current_idx; uint32_t in_flags; uint32_t in_tid; - struct smbXsrv_tcon0 *tcon; + struct smbXsrv_tcon *tcon; NTSTATUS status; NTTIME now = timeval_to_nttime(&req->request_time); -- 2.11.4.GIT