1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-22 22:04:08 +03:00

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

Andrew Bartlett
This commit is contained in:
Andrew Bartlett 2004-08-30 01:26:28 +00:00 committed by Gerald (Jerry) Carter
parent e509451538
commit 16ef31a79e

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;
}