1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

s3:smbd: make use of TCONX_FLAG_DISCONNECT_TID define

metze
This commit is contained in:
Stefan Metzmacher 2012-08-01 11:48:30 +02:00
parent 3682eb80ab
commit 3fb6549db0

View File

@ -736,7 +736,7 @@ void reply_tcon_and_X(struct smb_request *req)
tcon_flags = SVAL(req->vwv+2, 0);
/* we might have to close an old one */
if ((tcon_flags & 0x1) && conn) {
if ((tcon_flags & TCONX_FLAG_DISCONNECT_TID) && conn) {
struct smbXsrv_tcon *tcon;
NTSTATUS status;