1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

s3:smbd: the SMB2-COMPOUND test shows that the related vs. unrelated flags isn't checked first

metze
This commit is contained in:
Stefan Metzmacher 2009-06-09 20:02:48 +02:00
parent 17a65541bd
commit cf7c41b841

View File

@ -237,6 +237,12 @@ static NTSTATUS smbd_smb2_request_validate(struct smbd_smb2_request *req)
compound_related = true;
}
} else if (idx > 4) {
#if 0
/*
* It seems the this tests are wrong
* see the SMB2-COMPOUND test
*/
/*
* all other requests should match the 2nd one
*/
@ -253,6 +259,7 @@ static NTSTATUS smbd_smb2_request_validate(struct smbd_smb2_request *req)
return NT_STATUS_OK;
}
}
#endif
}
}