diff options
author | Michael Adam <obnox@samba.org> | 2012-07-02 13:31:12 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-07-03 13:39:40 +0200 |
commit | bfc38d74ccc3a5ca378ef718ae19dfc1a1d05d7e (patch) | |
tree | 395a640956cb3b9306b07d158580a407e61af0bf | |
parent | cca51e2f55b79227e697fdc8e5b7f277d0e3e9bb (diff) | |
download | samba-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.
-rw-r--r-- | source3/smbd/smb2_server.c | 2 |
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); |