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

r2098: The first 8 bytes of this sig is not used in the 'is it correct' calculation.

Andrew Bartlett
(This used to be commit 16ef31a79e)
This commit is contained in:
Andrew Bartlett 2004-08-30 01:26:28 +00:00 committed by Gerald (Jerry) Carter
parent 1685238339
commit 63b4975391

View File

@ -95,7 +95,7 @@ BOOL torture_ntlmssp_self_check(int dummy)
return False;
}
if (memcmp(sig.data, expected_sig.data, sig.length)) {
if (memcmp(sig.data+8, expected_sig.data+8, sig.length-8)) {
return False;
}