Common/Crypto: Reduce differences between 3.3.5 and 6.x branches

Code functionality shouldn't have been modified.
This commit is contained in:
jackpoz
2016-08-03 23:33:36 +02:00
committed by Aokromes
parent 3c66feafcc
commit 5dcb395e90
5 changed files with 13 additions and 7 deletions

View File

@@ -501,7 +501,7 @@ bool AuthSession::HandleLogonProof()
A.SetBinary(logonProof->A, 32);
// SRP safeguard: abort if A == 0
if (A.isZero())
if (A.IsZero())
{
return false;
}