summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2012-07-02 13:31:12 +0200
committerMichael Adam <obnox@samba.org>2012-07-03 13:39:40 +0200
commitbfc38d74ccc3a5ca378ef718ae19dfc1a1d05d7e (patch)
tree395a640956cb3b9306b07d158580a407e61af0bf /source3
parentcca51e2f55b79227e697fdc8e5b7f277d0e3e9bb (diff)
downloadsamba-bfc38d74ccc3a5ca378ef718ae19dfc1a1d05d7e.tar.gz
samba-bfc38d74ccc3a5ca378ef718ae19dfc1a1d05d7e.tar.bz2
samba-bfc38d74ccc3a5ca378ef718ae19dfc1a1d05d7e.zip
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.
Diffstat (limited to 'source3')
-rw-r--r--source3/smbd/smb2_server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/smb2_server.c b/source3/smbd/smb2_server.c
index 0abd4fcd64..c7f9129b12 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);