1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s3:smbd: use req->sconn in reply_negprot()

xconn->sconn will go away soon.

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
This commit is contained in:
Stefan Metzmacher 2014-06-11 12:42:56 +02:00 committed by Michael Adam
parent 4b9f17eca7
commit f25331499e

View File

@ -517,7 +517,7 @@ void reply_negprot(struct smb_request *req)
int i;
size_t converted_size;
struct smbXsrv_connection *xconn = req->xconn;
struct smbd_server_connection *sconn = xconn->sconn;
struct smbd_server_connection *sconn = req->sconn;
START_PROFILE(SMBnegprot);