diff options
author | Stefan Metzmacher <metze@samba.org> | 2014-06-11 10:42:01 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2014-09-19 09:15:12 +0200 |
commit | fe00c8e436c1d1f93d76dcb96e568d8e21e407f0 (patch) | |
tree | 2519dcd9b4a9e04299d8df375cd39b23b28706a8 | |
parent | b970db154af3e8e1fa749fad7cadff578d03f87e (diff) | |
download | samba-fe00c8e436c1d1f93d76dcb96e568d8e21e407f0.tar.gz samba-fe00c8e436c1d1f93d76dcb96e568d8e21e407f0.tar.xz samba-fe00c8e436c1d1f93d76dcb96e568d8e21e407f0.zip |
s3:smb2_server: use xconn->client->sconn in smbd_smb2_first_negprot()
xconn->sconn will go away soon.
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
-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 61d3c8e32b..8fe2868258 100644 --- a/source3/smbd/smb2_server.c +++ b/source3/smbd/smb2_server.c @@ -3003,7 +3003,7 @@ static NTSTATUS smbd_smb2_request_next_incoming(struct smbXsrv_connection *xconn void smbd_smb2_first_negprot(struct smbXsrv_connection *xconn, const uint8_t *inpdu, size_t size) { - struct smbd_server_connection *sconn = xconn->sconn; + struct smbd_server_connection *sconn = xconn->client->sconn; NTSTATUS status; struct smbd_smb2_request *req = NULL; |