diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-12-07 07:28:43 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:47:10 -0500 |
commit | 89f5d66dfeb02ad626ad21c4c4c7800560f83676 (patch) | |
tree | 7a756c58e7d8cc3f899ce77444d43c3817ab7128 /source4/torture/smb2 | |
parent | 3edfa552a28e002dda3baa7c7117bbbe8dfccae7 (diff) | |
download | samba-89f5d66dfeb02ad626ad21c4c4c7800560f83676.tar.gz samba-89f5d66dfeb02ad626ad21c4c4c7800560f83676.tar.bz2 samba-89f5d66dfeb02ad626ad21c4c4c7800560f83676.zip |
r12114: - smb2_keepalive() acts on the smb2_transport
- smb2_logoff() acts on the smb2_session
metze
(This used to be commit ae1ca2bb4affefff1026c03f0765faf28c2b316b)
Diffstat (limited to 'source4/torture/smb2')
-rw-r--r-- | source4/torture/smb2/connect.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/torture/smb2/connect.c b/source4/torture/smb2/connect.c index dde2ace4b2..fe5febdf07 100644 --- a/source4/torture/smb2/connect.c +++ b/source4/torture/smb2/connect.c @@ -216,19 +216,19 @@ BOOL torture_smb2_connect(void) return False; } - status = smb2_logoff(tree); + status = smb2_logoff(tree->session); if (!NT_STATUS_IS_OK(status)) { printf("Logoff failed - %s\n", nt_errstr(status)); return False; } - status = smb2_logoff(tree); + status = smb2_logoff(tree->session); if (!NT_STATUS_EQUAL(status, NT_STATUS_USER_SESSION_DELETED)) { printf("Logoff should have disabled session - %s\n", nt_errstr(status)); return False; } - status = smb2_keepalive(tree); + status = smb2_keepalive(tree->session->transport); if (!NT_STATUS_IS_OK(status)) { printf("keepalive failed? - %s\n", nt_errstr(status)); return False; |