diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-03-27 11:09:05 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-06-25 20:55:06 +0200 |
commit | 463b308f16733b5a0bd896c46347d39064cee170 (patch) | |
tree | 7880a96961d639c6de21f3225e6f56fade312a0c /source3/smbd/password.c | |
parent | ef408e5068255449eda9b4fc5c483713e91e560d (diff) | |
download | samba-463b308f16733b5a0bd896c46347d39064cee170.tar.gz samba-463b308f16733b5a0bd896c46347d39064cee170.tar.bz2 samba-463b308f16733b5a0bd896c46347d39064cee170.zip |
s3:smbd: make use of smbXsrv_tcon and smbXsrv_session for smb2
The removes the protocol specific smbd_smb2_session and
smbd_smb2_tcon.
Pair-Programmed-With: Michael Adam <obnox@samba.org>
metze
Diffstat (limited to 'source3/smbd/password.c')
-rw-r--r-- | source3/smbd/password.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/smbd/password.c b/source3/smbd/password.c index e8b48c464d..b1ba66ac3f 100644 --- a/source3/smbd/password.c +++ b/source3/smbd/password.c @@ -145,6 +145,7 @@ void invalidate_vuid(struct smbd_server_connection *sconn, uint64_t vuid) void invalidate_all_vuids(struct smbd_server_connection *sconn) { if (sconn->using_smb2) { + smbXsrv_session_logoff_all(sconn->conn); return; } |