mirror of
https://github.com/samba-team/samba.git
synced 2025-02-28 01:58:17 +03:00
smbd: only pass struct smbXsrv_client to smb1srv_tcon_disconnect_all()
That's all it needs. Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
This commit is contained in:
parent
3fd1a41f68
commit
5cb94ca028
@ -620,7 +620,7 @@ NTSTATUS smb1srv_tcon_create(struct smbXsrv_connection *conn,
|
||||
NTSTATUS smb1srv_tcon_lookup(struct smbXsrv_connection *conn,
|
||||
uint16_t tree_id, NTTIME now,
|
||||
struct smbXsrv_tcon **tcon);
|
||||
NTSTATUS smb1srv_tcon_disconnect_all(struct smbXsrv_connection *conn);
|
||||
NTSTATUS smb1srv_tcon_disconnect_all(struct smbXsrv_client *client);
|
||||
NTSTATUS smb2srv_tcon_table_init(struct smbXsrv_session *session);
|
||||
NTSTATUS smb2srv_tcon_create(struct smbXsrv_session *session,
|
||||
NTTIME now,
|
||||
|
@ -144,7 +144,7 @@ static void exit_server_common(enum server_exit_reason how,
|
||||
* Note: this is a no-op for smb2 as
|
||||
* conn->tcon_table is empty
|
||||
*/
|
||||
status = smb1srv_tcon_disconnect_all(xconn);
|
||||
status = smb1srv_tcon_disconnect_all(client);
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
DEBUG(0,("Server exit (%s)\n",
|
||||
(reason ? reason : "normal exit")));
|
||||
|
@ -1112,9 +1112,8 @@ NTSTATUS smb1srv_tcon_lookup(struct smbXsrv_connection *conn,
|
||||
local_id, now, tcon);
|
||||
}
|
||||
|
||||
NTSTATUS smb1srv_tcon_disconnect_all(struct smbXsrv_connection *conn)
|
||||
NTSTATUS smb1srv_tcon_disconnect_all(struct smbXsrv_client *client)
|
||||
{
|
||||
struct smbXsrv_client *client = conn->client;
|
||||
|
||||
/*
|
||||
* We do not pass a vuid here,
|
||||
|
Loading…
x
Reference in New Issue
Block a user