1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

smbd: remove vuser arg from make_connection_snum()

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Ralph Boehme 2019-12-30 10:28:25 +01:00 committed by Jeremy Allison
parent c1d0a70d19
commit 96fd0ddd02

View File

@ -530,7 +530,7 @@ static NTSTATUS notify_init_sconn(struct smbd_server_connection *sconn)
static NTSTATUS make_connection_snum(struct smbXsrv_connection *xconn,
connection_struct *conn,
int snum, struct user_struct *vuser,
int snum,
struct smbXsrv_session *session,
const char *pdev)
{
@ -952,7 +952,6 @@ static connection_struct *make_connection_smb1(struct smb_request *req,
*pstatus = make_connection_snum(req->xconn,
conn,
snum,
vuser,
req->session,
pdev);
if (!NT_STATUS_IS_OK(*pstatus)) {
@ -1009,7 +1008,6 @@ connection_struct *make_connection_smb2(struct smbd_smb2_request *req,
*pstatus = make_connection_snum(req->xconn,
conn,
snum,
vuser,
req->session,
pdev);
if (!NT_STATUS_IS_OK(*pstatus)) {